audio/xmp: Added (Extended Module Player)

Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
Erik Hanson 2012-04-08 10:54:24 -04:00 committed by dsomero
parent b291fd0506
commit 00fe1301c6
5 changed files with 149 additions and 0 deletions

3
audio/xmp/README Normal file
View file

@ -0,0 +1,3 @@
The Extended Module Player, or xmp, is a portable command-line module player
for Unix and Unix-like systems. Xmp plays over 90 mainstream and obscure
module formats from Amiga, Atari, Acorn, Apple IIgs and PC.

15
audio/xmp/doinst.sh Normal file
View file

@ -0,0 +1,15 @@
config() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
# toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
}
config etc/xmp/xmp.conf.new
config etc/xmp/modules.conf.new

19
audio/xmp/slack-desc Normal file
View file

@ -0,0 +1,19 @@
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description. Line
# up the first '|' above the ':' following the base package name, and the '|'
# on the right side marks the last column you can put a character in. You must
# make exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':'.
|-----handy-ruler----------------------------------------------------|
xmp: xmp (Extended Module Player)
xmp:
xmp: The Extended Module Player, or xmp, is a portable command-line
xmp: module player for Unix and Unix-like systems. Xmp plays over 90
xmp: mainstream and obscure module formats from Amiga, Atari, Acorn,
xmp: Apple IIgs and PC.
xmp:
xmp:
xmp:
xmp:
xmp:

102
audio/xmp/xmp.SlackBuild Normal file
View file

@ -0,0 +1,102 @@
#!/bin/sh
#
# Slackware build script for Extended Module Player (xmp)
#
# Copyright 2012 Erik W. Hanson, Minneapolis, MN, USA
# 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=xmp
VERSION=${VERSION:-3.5.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
fi
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
fi
set -ue
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/man/ \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--enable-audacious-plugin \
--build=$ARCH-slackware-linux
make
make install DESTDIR=$PKG
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
gzip -9 $PKG/usr/man/man?/*.?
mv $PKG/etc/xmp/modules.conf{,.new}
mv $PKG/etc/xmp/xmp.conf{,.new}
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cd docs
cp -a COPYING CREDITS ChangeLog README.awebug README.fixloop README.os2 \
README.trackers README.unsqsh adlib_sb.txt ay-3-8912.txt formats/ \
pt_versions.txt st02-ok.sample $PKG/usr/doc/$PRGNAM-$VERSION
cd ..
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
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.${PKGTYPE:-tgz}

10
audio/xmp/xmp.info Normal file
View file

@ -0,0 +1,10 @@
PRGNAM="xmp"
VERSION="3.5.0"
HOMEPAGE="http://xmp.sourceforge.net/"
DOWNLOAD="http://sourceforge.net/projects/xmp/files/xmp/3.5.0/xmp-3.5.0.tar.gz"
MD5SUM="47e54e6dfa88ce37370054d4a3ea955f"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Erik Hanson"
EMAIL="erik@slackbuilds.org"
APPROVED="dsomero"