#!/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=dirmngr export VERSION=1.0.3 export ARCH=arm export BUILD=2 export PKGSERIES=n 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 $PKGNAM isn't already installed: slackfailpkgdeps $PKGNAM || removepkg $PKGNAM # Ensure specific build dependencies (mainly libraries): { slackcheckpkgdeps cyrus-sasl || installpkg $PKGSTORE/n/cyrus-sasl-*.tgz || exit 99 ; } { slackcheckpkgdeps libassuan || installpkg $PKGSTORE/n/libassuan-*.t?z || exit 99 ; } { slackcheckpkgdeps libgcrypt || installpkg $PKGSTORE/n/libgcrypt-*.tgz || exit 99 ; } { slackcheckpkgdeps libgpg-error || installpkg $PKGSTORE/n/libgpg-error-*.tgz || exit 99 ; } { slackcheckpkgdeps libksba || installpkg $PKGSTORE/n/libksba-*.tgz || exit 99 ; } { slackcheckpkgdeps openldap-client || installpkg $PKGSTORE/n/openldap-client-*.tgz || exit 99 ; } { slackcheckpkgdeps openssl || installpkg $PKGSTORE/n/openssl-*.tgz || exit 99 ; } { slackcheckpkgdeps pth || installpkg $PKGSTORE/n/pth-*.tgz || exit 99 ; } # Launch the package build script: BUILDLOG=$( basename $SLACKPACKAGE .tgz ).build.log ( ./$PKGNAM.SlackBuild ) >& /dev/stdout | tee $BUILDLOG # Compress the build log: bzip2 -9f $BUILDLOG