aboutsummaryrefslogtreecommitdiff
path: root/tools/cpt-build
blob: 40ae4fdf30a578ad43006bd2dcd97122e16b0d38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

# shellcheck disable=1091
if command -v cpt-lib >/dev/null; then . cpt-lib; else . ../lib.sh; fi

case "$1" in
    '') set -- "${PWD##*/}"; export CPT_PATH=${PWD%/*}:$CPT_PATH ;;
    --help|-h) out "usage: ${0##*/} [pkg...]"; exit 1 ;;
    --version|-v) version ;;
esac

pkg_build "$@"