From a6ec5b6bb492fc69c2dbb6d5c6a30a166290fe95 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Sun, 11 Dec 2016 16:10:00 +0100 Subject: created Makefile --- Makefile | 41 +++++++++++++++++++++++++++++++++++++++++ completions/mupdf | 31 +++++++++++++++++++++++++++++++ mupdf | 31 ------------------------------- 3 files changed, 72 insertions(+), 31 deletions(-) create mode 100644 Makefile create mode 100644 completions/mupdf delete mode 100644 mupdf diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..afd30cb --- /dev/null +++ b/Makefile @@ -0,0 +1,41 @@ +# +# bash-completion-extras - some additional completions for bash +# +# Copyright (c) 2016 Erich Eckner +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, +# USA. +# + +DESTDIR = +COMPDIR = /usr/share/bash-completion/completions + +VERSION = 0.0 + +all: + +.PHONY: install dist + +install: all + install -D -m0644 -t $(DESTDIR)$(COMPDIR) completions/* + +dist: + git status --porcelain 2> /dev/null | grep -q "\S" && (git add .; git commit -m"neue Version: $(VERSION)") || true + ! git tag -d v$(VERSION) 2> /dev/null + git tag v$(VERSION) + git push + git push --tags + +# End of file diff --git a/completions/mupdf b/completions/mupdf new file mode 100644 index 0000000..718cacd --- /dev/null +++ b/completions/mupdf @@ -0,0 +1,31 @@ +# mupdf(1) completion -*- shell-script -*- + +_mupdf() +{ + local cur prev words cword split + _init_completion -s || return + + case $prev in + -p|-r|-A|-C|-W|-H|-S) + return + ;; + -U) + _filedir + return + ;; + esac + + $split && return 0 + + if [[ $cur == -* ]]; then + COMPREPLY=( $( compgen -W '$( _parse_help "$1" --help-all )' \ + -- "$cur" ) ) + [[ $COMPREPLY == *= ]] && compopt -o nospace + return + fi + + _filedir '@(@(?(e)ps|?(E)PS|[pf]df|[PF]DF|dvi|DVI)?(.gz|.GZ|.bz2|.BZ2|.xz|.XZ)|cb[rz]|djv?(u)|gif|jp?(e)g|miff|tif?(f)|pn[gm]|p[bgp]m|bmp|xpm|ico|xwd|tga|pcx)' +} && +complete -F _mupdf mupdf + +# ex: ts=4 sw=4 et filetype=sh diff --git a/mupdf b/mupdf deleted file mode 100644 index 718cacd..0000000 --- a/mupdf +++ /dev/null @@ -1,31 +0,0 @@ -# mupdf(1) completion -*- shell-script -*- - -_mupdf() -{ - local cur prev words cword split - _init_completion -s || return - - case $prev in - -p|-r|-A|-C|-W|-H|-S) - return - ;; - -U) - _filedir - return - ;; - esac - - $split && return 0 - - if [[ $cur == -* ]]; then - COMPREPLY=( $( compgen -W '$( _parse_help "$1" --help-all )' \ - -- "$cur" ) ) - [[ $COMPREPLY == *= ]] && compopt -o nospace - return - fi - - _filedir '@(@(?(e)ps|?(E)PS|[pf]df|[PF]DF|dvi|DVI)?(.gz|.GZ|.bz2|.BZ2|.xz|.XZ)|cb[rz]|djv?(u)|gif|jp?(e)g|miff|tif?(f)|pn[gm]|p[bgp]m|bmp|xpm|ico|xwd|tga|pcx)' -} && -complete -F _mupdf mupdf - -# ex: ts=4 sw=4 et filetype=sh -- cgit v1.2.3