diff options
Diffstat (limited to 'source/l/wavpack')
-rw-r--r-- | source/l/wavpack/slack-desc | 12 | ||||
-rwxr-xr-x | source/l/wavpack/wavpack.SlackBuild | 19 |
2 files changed, 21 insertions, 10 deletions
diff --git a/source/l/wavpack/slack-desc b/source/l/wavpack/slack-desc index c5343122..981b6a6d 100644 --- a/source/l/wavpack/slack-desc +++ b/source/l/wavpack/slack-desc @@ -1,20 +1,20 @@ # HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line +# The "handy ruler" below makes it easier to edit a package description. Line # up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to +# the right side marks the last column you can put a character in. You must make +# exactly 11 lines for the formatting to be correct. It's also customary to # leave one space after the ':'. |-----handy-ruler------------------------------------------------------| wavpack: wavpack (A lossless WAV file compressor) wavpack: -wavpack: Wavpack is a hybrid lossless wavefile compressor. Wavfile is -wavpack: Copyright (c) 1998 - 2006 Conifer Software. All Rights Reserved. +wavpack: Wavpack is a hybrid lossless wavefile compressor. Wavfile is +wavpack: Copyright (c) 1998 - 2006 Conifer Software. All Rights Reserved. wavpack: wavpack: Wavpack is distributed under the BSD Software License. wavpack: -wavpack: Visit the wavpack project online: http://www.wavpack.com +wavpack: Visit the wavpack project online: http://www.wavpack.com wavpack: wavpack: wavpack: diff --git a/source/l/wavpack/wavpack.SlackBuild b/source/l/wavpack/wavpack.SlackBuild index 2f6ba82a..ab3e0b1c 100755 --- a/source/l/wavpack/wavpack.SlackBuild +++ b/source/l/wavpack/wavpack.SlackBuild @@ -1,11 +1,11 @@ -#!/bin/sh +#!/bin/bash # Copyright 2007 Erik Hanson erik@slackbuilds.org # All rights reserved. # Updated by Andrew Brouwers, abrouwers@gmail.com # Modified by the SlackBuilds.org project # Modified to build wavpack. -# Copyright 2008, 2009, 2010 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2008, 2009, 2010, 2018 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -25,10 +25,11 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +cd $(dirname $0) ; CWD=$(pwd) PKGNAM=wavpack VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z* | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -40,9 +41,16 @@ if [ -z "$ARCH" ]; then esac fi +# If the variable PRINT_PACKAGE_NAME is set, then this script will report what +# the name of the created package would be, and then exit. This information +# could be useful to other scripts. +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PKGNAM-$VERSION-$ARCH-$BUILD.txz" + exit 0 +fi + NUMJOBS=${NUMJOBS:-" -j7 "} -CWD=$(pwd) TMP=${TMP:-/tmp} PKG=$TMP/package-$PKGNAM OUTPUT=${OUTPUT:-/tmp} @@ -89,6 +97,9 @@ CFLAGS="$SLKCFLAGS" \ make $NUMJOBS || make || exit 1 make install-strip DESTDIR=$PKG || exit 1 +# Don't ship .la files: +rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la + mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION cp -a \ AUTHORS NEWS README* \ |