diff options
Diffstat (limited to 'source/ap/alsa-utils/alsa-utils.SlackBuild')
-rwxr-xr-x | source/ap/alsa-utils/alsa-utils.SlackBuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source/ap/alsa-utils/alsa-utils.SlackBuild b/source/ap/alsa-utils/alsa-utils.SlackBuild index 14398aab..77664487 100755 --- a/source/ap/alsa-utils/alsa-utils.SlackBuild +++ b/source/ap/alsa-utils/alsa-utils.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2008, 2009, 2010 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2008, 2009, 2010, 2011 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -82,9 +82,10 @@ CFLAGS="$SLKCFLAGS" \ make $NUMJOBS || make || exit 1 make install DESTDIR=$PKG + mkdir -p $PKG/etc/rc.d zcat $CWD/rc.alsa.gz > $PKG/etc/rc.d/rc.alsa -chmod 755 $PKG/etc/rc.d/rc.alsa +chmod 0755 $PKG/etc/rc.d/rc.alsa find $PKG | xargs file | grep -e "executable" -e "shared object" \ | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null @@ -122,6 +123,7 @@ fi mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc +zcat $CWD/doinst.sh.gz > $PKG/install/doinst.sh cd $PKG /sbin/makepkg -l y -c n $TMP/alsa-utils-$VERSION-$ARCH-$BUILD.txz |