blob: 389c824e6859d7f2cb1b6a650d8a3037fd537bac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
# Build a package
if [ -f ./cpt-lib ]; then . ./cpt-lib; else . cpt-lib; fi
parser_definition() {
setup REST help:usage -- "usage: ${0##*/} [pkg...]"
msg -- '' 'Options:'
flag CPT_TEST -t --test export:1 init:@export -- "Run tests (if they exist)"
global_options
}
eval "$(getoptions parser_definition parse "$0")"
parse "$@"
eval set -- "$REST"
[ "$1" ] || set -- "${PWD##*/}"; export CPT_PATH=${PWD%/*}:$CPT_PATH
create_cache
pkg_build "$@"
|