#!/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=bind export VERSION=${VERSION:-9.16.25} # hyphens taken care of 4 lines down #export BUILD=${BUILD:-1_slack15.0} export BUILD=${BUILD:-1} export PKGSERIES=${PKGSERIES:-n} export SLACKPACKAGE=$PKGNAM-$(echo $VERSION | tr - _)-$PKGARCH-$BUILD.txz ## ******************************************************************* ## # For test packages - best to store in another location rather than # overwriting the working copy in the main tree: # export PKGSTORE=/tmp/ # mkdir -vpm755 $PKGSTORE/$PKGSERIES ## ******************************************************************* ## # Ensure base ARM packages are installed first: slackbasedeps # Ensure $PKGNAM isn't already installed: slackfailpkgdeps $PKGNAM || removepkg $PKGNAM # Ensure build dependencies: { slackcheckpkgdeps python-ply || installpkg $PKGSTORE/l/python-ply-[0-9]*.t?z || exit 99; } # { slackcheckpkgdeps e2fsprogs || installpkg $PKGSTORE/a/e2fsprogs-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps json-c || installpkg $PKGSTORE/l/json-c-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps libcap || installpkg $PKGSTORE/l/libcap-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps libedit || installpkg $PKGSTORE/l/libedit-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps libidn2 || installpkg $PKGSTORE/l/libidn2-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps libuv || installpkg $PKGSTORE/l/libuv-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps libxml2 || installpkg $PKGSTORE/l/libxml2-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps lmdb || installpkg $PKGSTORE/l/lmdb-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps krb5 || installpkg $PKGSTORE/n/krb5-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps openssl || installpkg $PKGSTORE/n/openssl-[0-9]*.t?z || exit 99; } # Launch the package build script: BUILDLOG=$SLKPORTARCH-$( basename $SLACKPACKAGE .t?z ).build.log ( ./$PKGNAM.SlackBuild ) >& /dev/stdout | tee $BUILDLOG # Compress the build log: bzip2 -9fvz $BUILDLOG