mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
26 lines
764 B
Bash
26 lines
764 B
Bash
# $Id: PKGBUILD 49634 2009-08-14 06:18:31Z tobias $
|
|
# Maintainer: Aaron Griffin <aaron@archlinux.org>
|
|
|
|
pkgname=vim-buftabs
|
|
pkgver=0.13
|
|
_scriptid=10557
|
|
pkgrel=2
|
|
pkgdesc="Minimalistic buffer tabs saving screen space"
|
|
arch=(i686 x86_64)
|
|
url="http://www.vim.org/scripts/script.php?script_id=1664"
|
|
license=('GPL')
|
|
depends=('vim')
|
|
groups=('vim-plugins')
|
|
source=(http://www.vim.org/scripts/download_script.php?src_id=$_scriptid)
|
|
md5sums=('0aa0bb74087e85f2b693517dfb240513')
|
|
sha256sums=('691b4d9bbae0314e64e9d3c39c98706adfb06804dfbece342c65a2d50d74e593')
|
|
|
|
build() {
|
|
cd $startdir/src
|
|
mv download_script.php?src_id=$_scriptid buftabs.vim
|
|
|
|
installpath="$pkgdir/usr/share/vim/vimfiles"
|
|
|
|
mkdir -p $installpath/plugin/
|
|
install -m644 buftabs.vim $installpath/plugin/
|
|
}
|