summaryrefslogtreecommitdiff
path: root/completions/makepkg
diff options
context:
space:
mode:
authorDavid Paleino <dapal@debian.org>2011-11-03 12:32:52 +0100
committerDavid Paleino <dapal@debian.org>2011-11-03 12:32:52 +0100
commit2c8171c38d87ddef31c92a76547d3fdf773a1337 (patch)
tree5e720d5a06ead72ed55454bf6647a712a761ed91 /completions/makepkg
parent9920a8faedf704420571d8072ccab27e9dac40ba (diff)
downloadbash-completion-2c8171c38d87ddef31c92a76547d3fdf773a1337.tar.gz
Imported Upstream version 1.90upstream/1.90
Diffstat (limited to 'completions/makepkg')
-rw-r--r--completions/makepkg24
1 files changed, 24 insertions, 0 deletions
diff --git a/completions/makepkg b/completions/makepkg
new file mode 100644
index 00000000..c24c9cc4
--- /dev/null
+++ b/completions/makepkg
@@ -0,0 +1,24 @@
+# Slackware Linux makepkg completion -*- shell-script -*-
+
+_makepkg()
+{
+ local cur prev words cword
+ _init_completion || return
+
+ case "$prev" in
+ -l|--linkadd|-c|--chown)
+ COMPREPLY=( $( compgen -W 'y n' -- "$cur" ) )
+ return 0
+ ;;
+ esac
+
+ if [[ "$cur" == -* ]]; then
+ COMPREPLY=( $( compgen -W '-l --linkadd -p --prepend \
+ -c --chown' -- "$cur") )
+ return 0
+ fi
+
+ _filedir
+} && complete -F _makepkg makepkg
+
+# ex: ts=4 sw=4 et filetype=sh