#!/bin/bash
#
# arm/build
# Check package dependencies, set metadata and launch
# package build script.
# by Stuart Winter <mozes@slackware.com>
#
source /usr/share/slackdev/buildkit.sh

# Package metadata:
# Information about this package:
export PKGNAM=kernel-modules
export BUILD=${BUILD:-1_slack14.2}
export PKGSERIES=${PKGSERIES:-patches}
eval $( egrep '^export VERSION' ../kernel-pkgs/arm/build  )
[ -z "${VERSION}" ] && { echo "Unable to determine Kernel version number from ../../k/arm/build" ; exit 1 ;}
export SLACKPACKAGE=$PKGNAM-$VERSION-$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
## ******************************************************************* ##

# Launch the package build script:
BUILDLOG=$( basename $SLACKPACKAGE .t?z ).build.log
( ./$PKGNAM.SlackBuild ) >& /dev/stdout | tee $BUILDLOG

# Compress the build log:
bzip2 -9fvz $BUILDLOG
