mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-22 08:44:44 +00:00
18 lines
413 B
Plaintext
18 lines
413 B
Plaintext
# description : Programmable completion for the bash shell
|
|
# depends : bash
|
|
|
|
name=bash-completion
|
|
version=2.9
|
|
release=1
|
|
source=(https://github.com/scop/bash-completion/releases/download/$version/$name-$version.tar.xz)
|
|
md5sum=(60139333b25c4d54ad40323b701be130)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr --sysconfdir=/etc
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm $PKG/etc/profile.d/bash_completion.sh
|
|
}
|