#!/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:
export PKGNAM=kernel-headers
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
## ******************************************************************* ##

# Ensure base ARM packages are installed first:
slackbasedeps

# Since this is Slackware ARM 14.2, we'll use armv5 headers since that was
# the base line.  Realistically it probably makes no difference.
case $ARCH in
   arm)     export SLKARCH=armv5   ;;
   aarch64) export SLKARCH=aarch64 ;;
esac

# Ensure $PKGNAM isn't already installed:
# You'll need to reinstall this immediately afterwards to compile more packages:
#slackfailpkgdeps $PKGNAM || removepkg $PKGNAM

# 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
