1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-19 12:06:13 +02:00
build/util/toolchain.sh
David Oberhollenzer 3d30afef75 Remove dev deploy split
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
2018-06-17 20:22:10 +02:00

30 lines
626 B
Bash

save_toolchain() {
if [ ! -e "${TCDIR}/${TARGET}.tar.gz" ]; then
pushd "$TCDIR/$TARGET" > /dev/null
tar czf "${TCDIR}/${TARGET}.tar.gz" include lib
popd > /dev/null
fi
}
restore_toolchain() {
pushd "$TCDIR/$TARGET" > /dev/null
rm -rf include lib
if [ -e "${TCDIR}/${TARGET}.tar.gz" ]; then
tar zxf "${TCDIR}/${TARGET}.tar.gz"
fi
popd > /dev/null
}
install_build_deps() {
for deppkg in $DEPENDS; do
local devdir="$PKGDEPLOYDIR/$deppkg"
if [ -d "$devdir/include" ]; then
cp -R "$devdir/include" "$TCDIR/$TARGET"
fi
if [ -d "$devdir/lib" ]; then
cp -R "$devdir/lib" "$TCDIR/$TARGET"
fi
done
}