#!/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=aaa_base export PKGSERIES=a export VERSION=15.0 export BUILD=4 slack_var_pkgseries # This is really "noarch", but Slackware32 & 64 now have this package # as i486,x86_64 - because the 64 bit package has /lib64 dirs. #export PKGARCH=${PKGARCH:-noarch} #export PKGARCH=${PKGARCH:-arm} # If building in /patches for a Stable Release, we drop the packages into /tmp/patches/ slack_findpkgstore_is_stablerelease && { export PKGSTORE=/tmp/ export PKGSERIES=/patches/ export BUILD=4_slack15.0 mkdir -vpm755 $PKGSTORE/$PKGSERIES ;} export SLACKPACKAGE=$PKGNAM-$VERSION-$PKGARCH-$BUILD.txz # 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