blob: 08cbdc924651eeef77f3d98f6a1b8a2f4b711fe7 (
plain)
1 # Maintainer: Johannes Winkelmann, jw at tks6 dot net
2 # Description: programmable bash completion for prt-get
3 # URL: http://www.hta-bi.bfh.ch/~winkj/software_prt-get.html
4 # Depends on: bash-completion
5
6 name=prt-get-bashcompletion
7 version=0.5.5
8 release=1
9 source=(http://jw.tks6.net/files/crux/prt-get-$version.tar.gz)
10
11 build() {
12 cd prt-get-$version/misc
13 install -D -m 755 prt-get_complete \
14 $PKG/usr/lib/bash-completion/prt-get_complete
15
16 }
|