blob: 1fc13e588118227a61aafd70ce75605211648b00 (
plain)
1 # Description: programmable bash completion for pkt-get
2 # URL: http://www.varlock.com
3 # Maintainer: Simone Rota, sip at crux dot nu
4 # Packager: Simone Rota, sip at crux dot nu
5 # Depends on: bash-completion, pkg-get
6
7 name=pkg-get-bashcompletion
8 version=0.4.5
9 release=1
10 source=(http://www.varlock.com/files/pkg-get-$version.tar.gz)
11
12 build() {
13 cd pkg-get-$version/scripts
14 install -D -m 755 pkg-get_completion.sh \
15 $PKG/usr/lib/bash-completion/pkg-get_completion
16 }
|