#!/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=gst-plugins-base export VERSION=${VERSION:-1.18.5} export BUILD=${BUILD:-1} export PKGSERIES=${PKGSERIES:-l} 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 # Ensure $PKGNAM isn't already installed: # It needs its own library, so not at the moment -- needs looking in to: #slackfailpkgdeps $PKGNAM || removepkg $PKGNAM # Ensure specific build dependencies (mainly libraries): # We need gtk-doc from linuxdoc-tools: { slackcheckpkgdeps linuxdoc-tools || installpkg $PKGSTORE/ap/linuxdoc-tools-*.t?z || exit 99 ; } # { slackcheckpkgdeps cdparanoia || installpkg $PKGSTORE/ap/cdparanoia-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps alsa-lib || installpkg $PKGSTORE/l/alsa-lib-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps cairo || installpkg $PKGSTORE/l/cairo-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps glib2 || installpkg $PKGSTORE/l/glib2-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps gstreamer || installpkg $PKGSTORE/l/gstreamer-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps libogg || installpkg $PKGSTORE/l/libogg-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps libtheora || installpkg $PKGSTORE/l/libtheora-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps libvisual || installpkg $PKGSTORE/l/libvisual-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps libvorbis || installpkg $PKGSTORE/l/libvorbis-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps opus || installpkg $PKGSTORE/l/opus-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps orc || installpkg $PKGSTORE/l/orc-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps pango || installpkg $PKGSTORE/l/pango-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps libX11 || installpkg $PKGSTORE/x/libX11-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps libXext || installpkg $PKGSTORE/x/libXext-[0-9]*.t?z || exit 99; } { slackcheckpkgdeps libXv || installpkg $PKGSTORE/x/libXv-[0-9]*.t?z || exit 99; } # 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