mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
31 lines
919 B
Bash
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')
|