mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
CI: Improve Usage readability and add -h option.
This commit is contained in:
parent
a8bb8358d1
commit
77d1ebcc99
1 changed files with 13 additions and 2 deletions
|
@ -16,7 +16,14 @@
|
|||
|
||||
set -e
|
||||
|
||||
USAGE="Usage: $0 -b [autotools|cmake] -c [crc32|crc64|sha256] -d [encoders|decoders|bcj|delta|threads] -l [destdir] -s [srcdir] -p [all|build|test] -f[-m32]"
|
||||
USAGE="Usage: $0
|
||||
-b [autotools|cmake]
|
||||
-c [crc32|crc64|sha256]
|
||||
-d [encoders|decoders|bcj|delta|threads]
|
||||
-l [destdir]
|
||||
-s [srcdir]
|
||||
-p [all|build|test]
|
||||
-f [CFLAGS]"
|
||||
|
||||
# Absolute path of script directory
|
||||
ABS_DIR=$(cd -- "$(dirname -- "$0")" && pwd)
|
||||
|
@ -34,9 +41,13 @@ DEST_DIR="$SRC_DIR/../xz_build"
|
|||
PHASE="all"
|
||||
|
||||
# Parse arguments
|
||||
while getopts b:c:d:l:s:p:f: opt; do
|
||||
while getopts b:c:d:l:s:p:f:h opt; do
|
||||
# b option can have either value "autotools" OR "cmake"
|
||||
case ${opt} in
|
||||
h)
|
||||
echo "$USAGE"
|
||||
exit 0
|
||||
;;
|
||||
b)
|
||||
case "$OPTARG" in
|
||||
autotools) ;;
|
||||
|
|
Loading…
Reference in a new issue