diff options
author | Arthur W. Green <lynx@panix.com> | 2016-03-19 18:49:16 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-03-19 18:49:16 +0700 |
commit | ae5e19636919dce9887b5324cf1f696e6a95aa94 (patch) | |
tree | 9cf61435042e27c43c76cc84eca9d2d12c1e7f24 /audio/snd/snd.SlackBuild | |
parent | e9e4f0ab47c478886495a16def8a3a132430dc6d (diff) | |
download | slackbuilds-ae5e19636919dce9887b5324cf1f696e6a95aa94.tar.gz |
audio/snd: Script cleanup.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/snd/snd.SlackBuild')
-rw-r--r-- | audio/snd/snd.SlackBuild | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/audio/snd/snd.SlackBuild b/audio/snd/snd.SlackBuild index 7b6aeeec70..ec7ab3fef0 100644 --- a/audio/snd/snd.SlackBuild +++ b/audio/snd/snd.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# SlackBuild for Snd, rev. 2 March 2016 +# SlackBuild for Snd, 10 March 2016 # Arthur W. Green <lynx@panix.com> # All rights reserved. # @@ -26,7 +26,7 @@ PRGNAM=snd VERSION=${VERSION:-16.3} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -65,11 +65,7 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . -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 {} \; +find -L . -exec chmod -R u+w,go-w,a+rX-st {} \; CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ @@ -79,12 +75,12 @@ CXXFLAGS="$SLKCFLAGS" \ --sysconfdir=/etc \ --localstatedir=/var \ --mandir=/usr/man \ + --with-s7 \ --with-alsa \ --with-motif \ - --with-gl \ - --with-s7 \ - --with-gsl \ --with-fftw \ + --with-gsl \ + --with-doc-dir=/usr/doc/$PRGNAM-$VERSION \ --build=$ARCH-slackware-linux make @@ -96,13 +92,16 @@ 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 -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a COPYING README.Snd $PKG/usr/doc/$PRGNAM-$VERSION +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 -# Add desktop file and menu icon. +# emacs support. +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 -install -D -m 0644 $CWD/snd-icon48x48.xpm $PKG/usr/share/pixmaps/snd.xpm +install -D -m 0644 $CWD/snd_48x48.xpm $PKG/usr/share/pixmaps/snd_48x48.xpm mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc |