PKGBUILDs/community/icomplete/PKGBUILD
2009-10-09 21:15:33 -05:00

31 lines
919 B
Bash

# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Jeff Mickey <jeff@archlinux.org>
# Contributor: Aaron -phrakure- Griffin <aaronmgriffin@gmail.com>
pkgname=icomplete
pkgver=0.5
pkgrel=1
pkgdesc="A command line program, which lists possible completions for a certain position in a source code"
arch=('i686' 'x86_64')
license=('GPL')
url="http://stud4.tuwien.ac.at/~e0125672/icomplete/"
depends=('ctags' 'vim')
backup=('etc/icomplete.conf')
#source=(http://downloads.sourceforge.net/icomplete/$pkgname-$pkgver.tar.bz2 \
source=($pkgname-$pkgver.tar.bz2 \
icomplete.conf)
install=icomplete.install
build()
{
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
sed -i "s@vimfiles/@@g" Dir.mk
make || return 1
make DESTDIR=$startdir/pkg install
cp $startdir/src/icomplete.conf $startdir/pkg/etc/
}
md5sums=('d7c8f2d182bae0ed52eb25a72b38f18d'
'68f6e38ab851f3bbe5b2c06436953cd8')