#!/bin/bash # arm/build # Check package dependencies, set metadata and launch # package build script. # by Stuart Winter # source /usr/share/slackdev/buildkit.sh # Package information: export PACKAGE=infozip export PKGSERIES=a export VERSION=5.52 export BUILD=2 export ARCH=arm export SLACKPACKAGE=$PACKAGE-$VERSION-$ARCH-$BUILD.tgz # Ensure base ARM packages are installed first: slackbasedeps # Launch package build script: ( ./$PACKAGE.SlackBuild ) 2>&1 | tee build.log # Compress the build log: bzip2 -9f build.log