#!/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=hostname export VERSION=${VERSION:-3.23} export BUILD=${BUILD:-2} slack_var_pkgseries export SLACKPACKAGE=$PKGNAM-$VERSION-$PKGARCH-$BUILD.txz # Defaults are taken from the slackkit package: #export PKGARCH=${PKGARCH:-arm} #export PKGARCH=${PKGARCH:-armhf} #export PKGARCH=${PKGARCH:-noarch} #export PKGARCH=${PKGARCH:-fw} #export PKGARCH=$( slack_archtype ) #export BUILD=${BUILD:-1_slack14.2} #export PKGSERIES=${PKGSERIES:-../armedslack-extra/packages} #export PKGSERIES=${PKGSERIES:-../extra} #export PKGSERIES=${PKGSERIES:-a} ## ******************************************************************* ## # 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 # You may wonder how I know which version numbers I'm dealing with. # The answer is that at present present I do not need to worry. # For different versions of ARMedslack I chroot into that version # and build using only the packages built for that version. # # Ensure specific build dependencies (mainly libraries): # If you wish to call architecture specific stuff (e.g. patching in specific # ARM patches) from $PKGNAM.SlackBuild then this script is a good place # to create & export functions. # In the SlackBuild you then simply need to check the value of $PORTARCH # and call the exported function. # 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