diff options
Diffstat (limited to 'audio/snd/snd.SlackBuild')
-rw-r--r-- | audio/snd/snd.SlackBuild | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/audio/snd/snd.SlackBuild b/audio/snd/snd.SlackBuild index a7dd8eee35..d74d7a9009 100644 --- a/audio/snd/snd.SlackBuild +++ b/audio/snd/snd.SlackBuild @@ -1,7 +1,7 @@ #!/bin/sh -# SlackBuild for Snd, 15 June 2016 -# Arthur W. Green <lynx@panix.com> +# SlackBuild for Snd, 22 August 2016 +# Arthur W. Green <awg@posteo.us> # All rights reserved. # # Redistribution and use of this script, with or without modification, @@ -26,13 +26,13 @@ ## in the Snd source distribution for more on this. PRGNAM=snd -VERSION=${VERSION:-16.6} +VERSION=${VERSION:-16.7} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -43,8 +43,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" @@ -66,7 +66,11 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . -find -L . -exec chmod -R u+w,go-w,a+rX-st {} \; +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ @@ -93,12 +97,13 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr find $PKG/usr/man -type f -exec gzip -9 {} \; for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +# documentation. mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION $PKG/usr/doc/$PRGNAM-$VERSION/pix cp -a COPYING README.Snd *.html $PKG/usr/doc/$PRGNAM-$VERSION cp -a pix/*.png $PKG/usr/doc/$PRGNAM-$VERSION/pix cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -# emacs support. +# emacs mode. install -D -m 0644 inf-snd.el $PKG/usr/share/emacs/site-lisp/inf-snd.el # desktop file and menu icon. install -D -m 0644 $CWD/snd.desktop $PKG/usr/share/applications/snd.desktop |