opt/bash-completion/Pkgfile

27 lines
673 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Bash completion functions
# URL: http://bash-completion.alioth.debian.org/
# Maintainer: Jose V Beneyto, sepen at crux dot nu
# Packager: Johannes Winkelmann, jw at smts dot ch
# Depends on: bash
2006-02-23 16:26:10 +01:00
name=bash-completion
2012-01-09 08:57:22 +01:00
version=1.99
release=1
source=(http://$name.alioth.debian.org/files/$name-$version.tar.bz2)
2006-02-23 16:26:10 +01:00
build() {
2009-08-01 14:35:08 +02:00
cd $name-$version
2011-11-08 12:20:22 +01:00
sed -i Makefile.* \
-e 's|pkgconfigdir = .*|pkgconfigdir = /usr/lib/pkgconfig|g' \
-e 's|profiledir = .*|profiledir = /etc|g'
./configure --prefix=/usr --sysconfdir=/etc
2011-11-08 12:20:22 +01:00
2009-08-01 14:35:08 +02:00
make
make DESTDIR=$PKG install
mv $PKG/etc/bash_completion{.sh,}
chmod 0755 $PKG/usr/share/$name/bash_completion
2006-02-23 16:26:10 +01:00
}