mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
2cc32ba84e
ap/linuxdoc-tools-0.9.83-x86_64-1.txz: Upgraded. Upgraded to linuxdoc-tools-0.9.83, gtk-doc-1.34.0, and asciidoc-10.2.0. See the ChangeLog in source/ap/linuxdoc-tools for more details. Thanks to Stuart Winter. ap/sqlite-3.45.3-x86_64-1.txz: Upgraded. l/Mako-1.3.3-x86_64-1.txz: Upgraded. l/pipewire-1.0.5-x86_64-1.txz: Upgraded. l/python-hatchling-1.23.0-x86_64-1.txz: Upgraded. x/libwacom-2.11.0-x86_64-1.txz: Upgraded. x/xcb-proto-1.17.0-x86_64-1.txz: Upgraded. x/xf86-input-wacom-1.2.2-x86_64-1.txz: Upgraded. xap/pan-0.158-x86_64-1.txz: Upgraded. Let's process the git pull with NOCONFIGURE=1 ./autogen.sh for FTIO. :-)
46 lines
1.5 KiB
Bash
Executable file
46 lines
1.5 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# arm/build
|
|
# Build wrapper for ap/linuxdoc-tools on Slackware ARM
|
|
# Stuart Winter <mozes@slackware.com>
|
|
#
|
|
source /usr/share/slackdev/buildkit.sh
|
|
|
|
# Package metadata:
|
|
export PKGNAM=linuxdoc-tools
|
|
export VERSION=${VERSION:-0.9.83}
|
|
export BUILD=${BUILD:-1}
|
|
export PKGSERIES=${PKGSERIES:-ap}
|
|
export SLACKPACKAGE=$PKGNAM-$VERSION-$PKGARCH-$BUILD.txz
|
|
export PKGEXT=${PKGEXT:-txz}
|
|
|
|
# Ensure base ARM packages are installed first:
|
|
slackbasedeps
|
|
|
|
# Ensure $PKGNAM isn't already installed:
|
|
slackfailpkgdeps $PKGNAM || removepkg $PKGNAM
|
|
|
|
# Ensure specific build dependencies - libraries and development tools.
|
|
# There are many more dependencies but these are the core ones I picked out
|
|
# as I was building the software included within this package.
|
|
#
|
|
#slackcheckpkgdeps libxml2 || installpkg $PKGSTORE/l/libxml2-*.t?z
|
|
# to unpack some SRPMs:
|
|
#slackcheckpkgdeps rpm || installpkg $PKGSTORE/ap/rpm-*.t?z
|
|
# for OpenJade:
|
|
#slackcheckpkgdeps tetex || installpkg $PKGSTORE/t/tetex-[0-9]*.t?z
|
|
# for AsciiDoc:
|
|
#slackcheckpkgdeps python || installpkg $PKGSTORE/d/python-[0-9]*.t?z
|
|
# Ensure the packages are installed; exit if not.
|
|
#slackcheckpkgdeps python,libxml2,rpm,tetex || exit 99
|
|
|
|
# Stop daemons/processes which tend to modify the contents of the filesystem:
|
|
altertrackprep
|
|
|
|
# Launch the package build script:
|
|
BUILDLOG=$( basename $SLACKPACKAGE .t?z ).build.log
|
|
# ( ./$PKGNAM.SlackBuild ) >& /dev/stdout | tee $BUILDLOG
|
|
( ./trackbuild.$PKGNAM ) >& /dev/stdout | tee $BUILDLOG
|
|
|
|
# Compress the build log:
|
|
bzip2 -9fvz $BUILDLOG
|