18 lines
446 B
Plaintext
18 lines
446 B
Plaintext
# 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
|
|
|
|
name=bash-completion
|
|
version=1.2
|
|
release=1
|
|
source=(http://$name.alioth.debian.org/files/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr --sysconfdir=/etc
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|