blob: cd73ba1aa8ca462d4d182146a18248be7af368ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh -ef
# Download sources for the given package
# shellcheck disable=1091
if command -v cpt-lib >/dev/null; then . cpt-lib; else . ../lib.sh; fi
case "$1" in
--help|-h)
out "usage: ${0##*/} [pkg...]"
exit 1
;;
--version|-v) version ;;
'') set -- "${PWD##*/}"; export CPT_PATH=${PWD%/*}:$CPT_PATH
esac
for pkg; do pkg_sources "$pkg"; done
|