IGNOREPATH=/etc:/home:/var:/dev:/boot:/root:/tmp:/usr/local:/bin:/sbin:/mnt:/usr/src STRIPLIB=y STRIPBIN=y VERSION=20030911 PROGNAME="bash-completion $VERSION" DESC="\ bash-completion \n\ \n\ Adds programmable completion to the bash shell. A new file called \n\ /etc/bash_completion will be sourced for interactive bash shells \n\ adding all sorts of enhanced command completion features. Once \n\ installed, you may get a list of all commands that have associated \n\ completions with 'complete -p', and examine the code for the shell \n\ functions with 'declare -f'. \n\ \n\ bash-completion was written by Ian Macdonald ." BUILD=1 MAINTAINER="Mark Post " SOURCE=ftp://ftp.gnu.org/pub/gnu/bash-completion PKGNAME=bash-completion-$VERSION-s390-$BUILD TAG=REC compile() { tar -zxvf $CWD/bash-completion-$VERSION.tar.gz cd bash_completion/ } install() { mkdir -p /package-bash-completion/usr/doc/bash-completion-$VERSION cp -a BUGS COPYING README \ /package-bash-completion/usr/doc/bash-completion-$VERSION mkdir -p /package-bash-completion/etc/bash_completion.d \ /package-bash-completion/etc/profile.d cp -a $CWD/bash_completion.sh.gz /package-bash-completion/etc/profile.d gzip -d /package-bash-completion/etc/profile.d/bash_completion.sh.gz cp -a bash_completion /package-bash-completion/etc cp -a contrib/* /package-bash-completion/etc/bash_completion.d } attributes() { chmod 755 $PKG/package-bash-completion/etc/bash_completion.d/* \ $PKG/package-bash-completion/etc/profile.d/bash_completion.sh } special() { cd $PKG mv package-bash-completion/* ./ rmdir package-bash-completion cd $CTL cat $CWD/slack-desc > slack-desc sed -e 's%package-bash-completion/%%g' doinst.sh > doinst.sh.new cat doinst.sh.new > doinst.sh rm doinst.sh.new }