mirror of
https://github.com/TrentSPalmer/aur-packages.git
synced 2024-11-21 11:01:29 -08:00
redo vim-lightline-git/PKGBUILD
This commit is contained in:
parent
ea9f55d11f
commit
5d937b8d00
@ -1,31 +1,46 @@
|
||||
# $Id$
|
||||
# Maintainer: jeff tracy <jefftracy nine one one at aol dot com>
|
||||
# Contributor:
|
||||
# Maintainer: trent palmer <trenttdually at g mail>
|
||||
# Contributor: jeff tracy <jefftracy nine one one at aol dot com>
|
||||
# Forked from https://aur.archlinux.org/vim-lightline-git.git
|
||||
# at commit 95ac7c5e2434144e5a40e4b71432bf9d61203cac
|
||||
|
||||
pkgname=vim-lightline-git
|
||||
pkgver=latest
|
||||
_name='vim-lightline'
|
||||
pkgname="${_name}-git"
|
||||
pkgver=
|
||||
pkgrel=1
|
||||
pkgdesc='A light and configurable statusline/tabline for Vim'
|
||||
arch=('any')
|
||||
url='https://github.com/itchyny/lightline.vim'
|
||||
license=('MIT')
|
||||
depends=('vim-runtime')
|
||||
depends=('vim-runtime' 'neovim')
|
||||
makedepends=('git')
|
||||
install='vimdoc.install'
|
||||
source=("git://github.com/itchyny/lightline.vim.git")
|
||||
provides=('vim-lightline-git')
|
||||
conflicts=('vim-lightline' 'vim-lightline-git')
|
||||
replaces=('vim-lightline')
|
||||
install='lightline.install'
|
||||
# source=("git://github.com/itchyny/lightline.vim.git")
|
||||
source=("${_name}::${url//https/git}")
|
||||
md5sums=('SKIP')
|
||||
|
||||
package() {
|
||||
cd "lightline.vim"
|
||||
|
||||
_installpath="$pkgdir/usr/share/vim/vimfiles"
|
||||
install -Dm755 doc/lightline.txt "$_installpath/doc/lightline.txt"
|
||||
install -Dm755 plugin/lightline.vim "$_installpath/plugin/lightline.vim"
|
||||
install -d "$_installpath/autoload"
|
||||
install -d "$_installpath/t"
|
||||
cp -R autoload/* "$_installpath/autoload"
|
||||
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||||
pkgver() {
|
||||
cd "${srcdir}/${_name}"
|
||||
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
||||
package() {
|
||||
mkdir -p "$pkgdir/usr/share/nvim/runtime"
|
||||
cp -r "${srcdir}/${_name}/"{autoload,doc,plugin} \
|
||||
"$pkgdir/usr/share/nvim/runtime"
|
||||
|
||||
mkdir -p "$pkgdir/usr/share/vim/vimfiles"
|
||||
cp -r "${srcdir}/${_name}/"{autoload,doc,plugin} \
|
||||
"$pkgdir/usr/share/vim/vimfiles"
|
||||
|
||||
mkdir -p "$pkgdir/usr/share/doc/${pkgname}"
|
||||
cp "${srcdir}/${_name}/"README.md \
|
||||
"$pkgdir/usr/share/doc/${pkgname}"
|
||||
|
||||
mkdir -p "$pkgdir/usr/share/licenses/${pkgname}"
|
||||
cp "${srcdir}/${_name}/"LICENSE \
|
||||
"$pkgdir/usr/share/licenses/${pkgname}"
|
||||
}
|
||||
|
34
vim-lightline-git/lightline.install
Normal file
34
vim-lightline-git/lightline.install
Normal file
@ -0,0 +1,34 @@
|
||||
update_neovim_helptag() {
|
||||
echo -n "Updating neovim (nvim) help tags..."
|
||||
/usr/bin/nvim --noplugins -u NONE -U NONE \
|
||||
--cmd ":helptags /usr/share/nvim/runtime/doc" --cmd ":q" > /dev/null 2>&1
|
||||
echo "done. "
|
||||
}
|
||||
|
||||
update_vim_helptag() {
|
||||
echo -n 'Updating vim help tags...'
|
||||
/usr/bin/vim --noplugins -u NONE -U NONE \
|
||||
--cmd ":helptags /usr/share/vim/vimfiles/doc" --cmd ":q" > /dev/null 2>&1
|
||||
echo 'done.'
|
||||
}
|
||||
|
||||
post_install() {
|
||||
update_neovim_helptag
|
||||
update_vim_helptag
|
||||
echo ""
|
||||
echo " see https://github.com/itchyny/lightline.vim for
|
||||
tips on setting $TERM and configuring init.vim/vimrc"
|
||||
echo ""
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
update_neovim_helptag
|
||||
update_vim_helptag
|
||||
}
|
||||
|
||||
post_remove() {
|
||||
update_neovim_helptag
|
||||
update_vim_helptag
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
@ -1,16 +0,0 @@
|
||||
post_install() {
|
||||
echo -n 'Updating vim help tags...'
|
||||
/usr/bin/vim --noplugins -u NONE -U NONE \
|
||||
--cmd ":helptags /usr/share/vim/vimfiles/doc" --cmd ":q" > /dev/null 2>&1
|
||||
echo 'done.'
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
post_install
|
||||
}
|
||||
|
||||
post_remove() {
|
||||
post_install
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
Loading…
Reference in New Issue
Block a user