aboutsummaryrefslogtreecommitdiff
path: root/src/cpt-install
diff options
context:
space:
mode:
authormerakor <cem@ckyln.com>2020-08-22 15:03:10 +0000
committermerakor <cem@ckyln.com>2020-08-22 15:03:10 +0000
commit9031dc631fa33a1493f5780943f8f888ce530178 (patch)
tree8acd058d02ace545eb026e95a944e7bf9a0b4211 /src/cpt-install
parent01fb58cf040114841800d9cceba9d256278a4682 (diff)
downloadcpt-9031dc631fa33a1493f5780943f8f888ce530178.tar.gz
cpt: remove getopt and use shell library instead.
FossilOrigin-Name: cbe6d1050c67fcce58e754cd03832089ffeb33a5f9455c55e71738ab11e0d056
Diffstat (limited to 'src/cpt-install')
-rwxr-xr-xsrc/cpt-install31
1 files changed, 14 insertions, 17 deletions
diff --git a/src/cpt-install b/src/cpt-install
index 548ba0c..0ee6816 100755
--- a/src/cpt-install
+++ b/src/cpt-install
@@ -4,23 +4,20 @@
# shellcheck disable=1091
if command -v cpt-lib >/dev/null; then . cpt-lib; else . ./cpt-lib; fi
-eval set -- "$(getopt -l help,version,force,root: -- fhv "$@")"
-
-while :; do
- case "$1" in
- --help|-h)
- out "usage: ${0##*/} [options] [pkg...]" "" \
- " Options:" \
- " -f --force Force installation" \
- " --root [rootdir] Use an alternate root directory" ""
- exit 1
- ;;
- --version|-v) version ;;
- -f|--force) export CPT_FORCE=1; shift ;;
- --root) export CPT_ROOT=$2; shift 2 ;;
- --) shift; break ;;
- esac
-done
+parser_definition() {
+ setup REST -- "usage: ${0##*/} [pkg...]"
+ msg -- '' 'Options:'
+ flag CPT_FORCE -f --force -- "Force installation"
+ param CPT_ROOT --root -- "Use an alternate root directory"
+ disp :usage -h --help -- "Show this help message"
+ disp :version -v --version -- "Print version information"
+}
+
+eval "$(getoptions parser_definition parse "$0")"
+eval "$(getoptions_help parser_definition usage "$0")"
+
+parse "$@"
+eval set -- "$REST"
[ "$1" ] || set -- "${PWD##*/}"; export CPT_PATH=${PWD%/*}:$CPT_PATH