diff options
author | Pierre Cazenave <pwcazenave {at} gmail {dot} com> | 2010-05-12 23:27:53 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 23:27:53 +0200 |
commit | d1afb5c3c1615e5bfc3f8305ac513481c0398df8 (patch) | |
tree | 6bf02bc7dddb3b1e8b5e2830d4a388e2afaf965a /audio/gnump3d/gnump3d.SlackBuild | |
parent | 3de45161220ad8d69963e4df7b61930bc4d7091b (diff) | |
download | slackbuilds-d1afb5c3c1615e5bfc3f8305ac513481c0398df8.tar.gz |
audio/gnump3d: Added to 12.2 repository
Diffstat (limited to 'audio/gnump3d/gnump3d.SlackBuild')
-rw-r--r-- | audio/gnump3d/gnump3d.SlackBuild | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/audio/gnump3d/gnump3d.SlackBuild b/audio/gnump3d/gnump3d.SlackBuild new file mode 100644 index 0000000000..e11f3997e2 --- /dev/null +++ b/audio/gnump3d/gnump3d.SlackBuild @@ -0,0 +1,97 @@ +#!/bin/sh + +# Slackware build script for the GNU mp3 and ogg daemon. +# 16/12/2008 - original script +# 04/04/2009 - fixed symlink and added no-clobber for config +# 28/05/2009 - added Slackware64 support. +# +# Copyright 2009 Pierre Cazenave <pwcazenave {at} gmail [dot] com> +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# + +PRGNAM=gnump3d +VERSION=3.0 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-3} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" +fi +# gnump3d gets the library directory from a short perl script in the +# source directory, thus, there's no need to specify a suffix in this +# script. + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar -xvf $CWD/$PRGNAM-$VERSION.tar.bz2 +cd $PRGNAM-$VERSION +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +make +make install \ + PREFIX=$PKG \ + MANDIR=/usr/man/man1 + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null +) + +( cd $PKG/usr/man + find . -type f -exec gzip -9 {} \; + for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +) + +# Don't clobber an existing config file +mv $PKG/etc/gnump3d/gnump3d.conf $PKG/etc/gnump3d/gnump3d.conf.new + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS COPYING ChangeLog DOWNSAMPLING INSTALL \ + PLUGINS README SUPPORT TODO $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +# fix a dodgy symlink +if [ -h $PKG/usr/bin/gnump3d ]; then + ( cd $PKG/usr/bin; rm gnump3d; ln -s /usr/bin/gnump3d2 gnump3d ) +fi + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz |