mirror of
https://github.com/pygos/build.git
synced 2024-11-05 11:37:10 +01:00
1636fc8aac
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
22 lines
402 B
Bash
Executable file
22 lines
402 B
Bash
Executable file
include_pkg() {
|
|
PKGNAME="$1" # globally visible package name
|
|
|
|
unset -f build deploy prepare
|
|
unset -v VERSION TARBALL URL SRCDIR SHA256SUM DEPENDS
|
|
source "$SCRIPTDIR/pkg/$PKGNAME/build"
|
|
}
|
|
|
|
dependencies() {
|
|
local depends="$DEPENDS"
|
|
|
|
if [ ! -z "$depends" ]; then
|
|
for DEP in $depends; do
|
|
echo "$PKGNAME $DEP"
|
|
done
|
|
|
|
for DEP in $depends; do
|
|
include_pkg "$DEP"
|
|
dependencies
|
|
done
|
|
fi
|
|
}
|