#!/bin/bash ulimit -s unlimited shopt -s extglob # flac.SlackBuild # Heavily based on the original Slackware build scripts, # Modified by Stuart Winter # 18-Sep-2004 # # Copyright 2008, 2009, 2010, 2011, 2018, 2019 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is # permitted provided that the following conditions are met: # # 1. Redistributions of this script must retain the above copyright # notice, this list of conditions and the following disclaimer. # # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO # EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; # OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # Record toolchain & other info for the build log: slackbuildinfo # Paths to skeleton port's source & real Slackware source tree: slackset_var_cwds # Temporary build locations: export TMPBUILD=$TMP/build-$PKGNAM export PKG=$TMP/package-$PKGNAM mkpkgdirs # Delete & re-create temporary directories then cd into $TMPBUILD # Extract source: tar xvvf $CWD/$PKGNAM-$VERSION.tar.!(*sign|*asc|*sig) cd $PKGNAM-$VERSION || exit 1 slackhousekeeping # Apply patches: zcat $CWD/flac.man.diff.gz | patch -p1 --verbose --backup --suffix=.orig || exit 1 #zcat $PORTCWD/sources/flac*diff* | patch -p1 #for i in 08_gcc-4.3_fixes.dpatch 09_noexec-stack.dpatch 07_metaflac_error_exit.dpatch 03_cosmetic_flac_stats.dpatch ; do # patch --verbose -p1 < debian/patches/$i || exit 1 #done if [ "$ARCH" != "x86_64" ]; then # We disable assembly optimizations to ensure compatibility with older # hardware, but you're welcome to comment this out and give it a try. # I've heard it gives a noticable speedup. DISABLE_ASM_OPTIMIZATIONS=${DISABLE_ASM_OPTIMIZATIONS:-"--disable-asm-optimizations"} else DISABLE_ASM_OPTIMIZATIONS=${DISABLE_ASM_OPTIMIZATIONS:-""} fi # Configure: CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure $DISABLE_ASM_OPTIMIZATIONS \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --mandir=/usr/man \ --disable-silent-rules \ --docdir=/usr/doc/flac-${VERSION} \ --build=${SLK_ARCH_BUILD} \ --host=${SLK_ARCH_HOST} || failconfig # Build: make $NUMJOBS || make || failmake # Install into package directory: make install DESTDIR=$PKG # Move docs to Slackware location: mv $PKG/usr/share/doc $PKG/usr rm $PKG/usr/doc/flac-$VERSION/FLAC.tag mv $PKG/usr/doc/flac-$VERSION/html/* $PKG/usr/doc/flac-$VERSION rm -rf $PKG/usr/doc/flac-$VERSION/html cp -a AUTHORS COPYING* README \ $PKG/usr/doc/$PKGNAM-$VERSION # we're not putting 3MB of API docs in the binary package... ( cd $PKG/usr/doc/$PKGNAM-$VERSION/api && rm -r * ) cat << EOF > $PKG/usr/doc/$PKGNAM-$VERSION/api/README Full HTML based API documentation may be found in the FLAC source package. It is not included in the binary package due to size. EOF # Apply generic Slackware packaging policies: cd $PKG slackstripall # strip all .a archives and all ELFs slack_delete_lafiles # delete usr/lib{,64}/*.la #slackstriprpaths # strip rpaths slackgzpages -i # compress man & info pages and delete usr/info/dir slackslack # chown -R root:root, chmod -R og-w, slackchown, slack644docs slackdesc # install slack-desc and doinst.sh slackmp # run makepkg -l y -c n # Perform any final checks on the package: cd $PKG slackhlinks # search for any hard links