diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2022-04-02 18:52:59 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2022-04-03 06:59:45 +0200 |
commit | 077ad1ea6c8bca0eb13fd41f844718c92364d1ac (patch) | |
tree | 4acd433b95b3499a71d4e38f2b5cf5fbc8ee826d /source/l/libsndfile | |
parent | 20f8c8e77495af3d80549ad1387c560581bc0b31 (diff) | |
download | current-077ad1ea6c8bca0eb13fd41f844718c92364d1ac.tar.gz current-077ad1ea6c8bca0eb13fd41f844718c92364d1ac.tar.xz |
Sat Apr 2 18:52:59 UTC 202220220402185259
ap/ghostscript-9.56.0-x86_64-1.txz: Upgraded.
d/poke-2.3-x86_64-1.txz: Upgraded.
l/freetype-2.12.0-x86_64-1.txz: Upgraded.
l/frei0r-plugins-1.8.0-x86_64-1.txz: Upgraded.
l/libsndfile-1.1.0-x86_64-1.txz: Upgraded.
l/mozilla-nss-3.77-x86_64-1.txz: Upgraded.
x/libX11-1.7.4-x86_64-1.txz: Upgraded.
xfce/mousepad-0.5.9-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/l/libsndfile')
-rwxr-xr-x | source/l/libsndfile/libsndfile.SlackBuild | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/source/l/libsndfile/libsndfile.SlackBuild b/source/l/libsndfile/libsndfile.SlackBuild index 7ae6d78b0..4fb15c3fa 100755 --- a/source/l/libsndfile/libsndfile.SlackBuild +++ b/source/l/libsndfile/libsndfile.SlackBuild @@ -4,7 +4,7 @@ # Copyright 2010 paul wisehart, Hyattsville, MD, USA # Copyright 2010 Robby Workman, Northport, Alabama, USA -# Copyright 2011, 2018, 2020, 2021 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2011, 2018, 2020, 2021, 2022 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -28,7 +28,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=libsndfile VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-2} +BUILD=${BUILD:-1} if [ -z "$ARCH" ]; then case "$( uname -m )" in @@ -75,6 +75,13 @@ cd $PKGNAM-$VERSION || exit 1 chown -R root:root . chmod -R a-s,u+w,go+r-w . +if [ ! -r configure ]; then + if [ -x ./autogen.sh ]; then + NOCONFIGURE=1 ./autogen.sh + else + autoreconf -vif + fi +fi CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ |