blob: 90c865e6844860e2c0a5299922f8477ed7d996bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/sh
# Build a package
if [ -f ./cpt-lib ]; then . ./cpt-lib; else . cpt-lib; fi
parser_definition() {
setup REST -- "usage: ${0##*/} [pkg...]"
msg -- '' 'Options:'
flag CPT_TEST -t --test export:1 init:="$CPT_TEST" -- \
"Run tests (if they exist)"
global_options
}
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
create_cache
pkg_build "$@"
|