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