#!/bin/bash # arm/build # Check package dependencies, set metadata and launch # package build script. # by Stuart Winter # source /usr/share/slackdev/buildkit.sh # Package metadata: export PKGNAM=transfig export VERSION=3.2.5 export ARCH=arm export BUILD=2 export PKGSERIES=t export SLACKPACKAGE=$PKGNAM-$VERSION-$ARCH-$BUILD.tgz # Reset the ARM file system: restore it to the 'factory settings' # as it were (this has no effect when building natively): sboxsysrestore # Ensure base ARM packages are installed first: slackbasedeps # Ensure specific build dependencies (mainly libraries): { slackcheckpkgdeps libpng || installpkg $PKGSTORE/l/libpng-*.tgz || exit 99 ; } { slackcheckpkgdeps libX11 || installpkg $PKGSTORE/x/libX11-*.tgz || exit 99 ; } { slackcheckpkgdeps libXext || installpkg $PKGSTORE/x/libXext-*.tgz || exit 99 ; } { slackcheckpkgdeps libXpm || installpkg $PKGSTORE/x/libXpm-*.tgz || exit 99 ; } # Launch the package build script: ( ./$PKGNAM.SlackBuild ) 2>&1 | tee build.log