aboutsummaryrefslogtreecommitdiff
path: root/src/cpt-build
blob: cb93949d5a88a3820adae73327813c63ac9ad4ae (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##*/} [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 "$@"