aboutsummaryrefslogtreecommitdiff
path: root/src/cpt-build
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpt-build')
-rwxr-xr-xsrc/cpt-build26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/cpt-build b/src/cpt-build
index b4c9dd9..d014f28 100755
--- a/src/cpt-build
+++ b/src/cpt-build
@@ -4,19 +4,19 @@
# shellcheck disable=1091
if command -v cpt-lib >/dev/null; then . cpt-lib; else . ./cpt-lib; fi
-eval set -- "$(getopt -l no-prompt,version,help -- yvh "$@")"
-while :; do
- case "$1" in
- --help|-h)
- out "usage: ${0##*/} [pkg...]" "" \
- " Options:" \
- " -y --no-prompt Do not prompt for confirmation" ""
- exit 1 ;;
- --version|-v) version ;;
- --no-prompt|-y) export CPT_PROMPT=0; shift ;;
- --) shift; break ;;
- esac
-done
+parser_definition() {
+ setup REST -- "usage: ${0##*/} [pkg...]"
+ msg -- '' 'Options:'
+ flag CPT_PROMPT -y --no-prompt on:0 -- "Do not prompt for confirmation"
+ 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