aboutsummaryrefslogtreecommitdiff
path: root/src/cpt-download
blob: 231e4bbf861b0ce08331e02ffb28e8f02e9c3d4b (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

if [ -f ./cpt-lib ]; then . ./cpt-lib; else . cpt-lib; fi

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

create_cache
for pkg; do pkg_sources "$pkg"; done