blob: 4eccbd118e4e5063b6adbc2fa765735880734b85 (
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 "$@"
|