From b027819ba4b9d95db9c8a645a773d6e37a0d9886 Mon Sep 17 00:00:00 2001 From: Erik Hanson Date: Mon, 3 Jun 2013 20:40:58 -0500 Subject: libraries/libxmp: Added (The Extended Module Player library) Signed-off-by: Robby Workman --- libraries/libxmp/README | 3 ++ libraries/libxmp/libxmp.SlackBuild | 97 ++++++++++++++++++++++++++++++++++++++ libraries/libxmp/libxmp.info | 10 ++++ libraries/libxmp/slack-desc | 19 ++++++++ 4 files changed, 129 insertions(+) create mode 100644 libraries/libxmp/README create mode 100644 libraries/libxmp/libxmp.SlackBuild create mode 100644 libraries/libxmp/libxmp.info create mode 100644 libraries/libxmp/slack-desc (limited to 'libraries') diff --git a/libraries/libxmp/README b/libraries/libxmp/README new file mode 100644 index 000000000000..26713160cb85 --- /dev/null +++ b/libraries/libxmp/README @@ -0,0 +1,3 @@ +Libxmp loads the module and renders the sound as linear PCM samples in a +buffer at rate and format specified by the user. Applications for libxmp +include players, module information extractors, module-to-mp3 renderers, etc. diff --git a/libraries/libxmp/libxmp.SlackBuild b/libraries/libxmp/libxmp.SlackBuild new file mode 100644 index 000000000000..3267247d8b70 --- /dev/null +++ b/libraries/libxmp/libxmp.SlackBuild @@ -0,0 +1,97 @@ +#!/bin/sh +# +# Slackware build script for libxmp +# +# Copyright 2013 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=libxmp +VERSION=${VERSION:-4.1.4} +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 \ + --disable-static \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --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 + +mkdir -p $PKG/usr/man/man3 +gzip -9c docs/libxmp.3 > $PKG/usr/man/man3/libxmp.3.gz + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cd docs +cp -a COPYING.LIB CREDITS Changelog adlib_sb.txt ay-3-8912.txt custom.style \ + fixloop.txt formats.txt libxmp.html libxmp.pdf libxmp.rst tracker_notes.txt \ + $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 + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/libraries/libxmp/libxmp.info b/libraries/libxmp/libxmp.info new file mode 100644 index 000000000000..02ab40b6e5f6 --- /dev/null +++ b/libraries/libxmp/libxmp.info @@ -0,0 +1,10 @@ +PRGNAM="libxmp" +VERSION="4.1.4" +HOMEPAGE="http://xmp.sourceforge.net/" +DOWNLOAD="http://downloads.sourceforge.net/xmp/libxmp-4.1.4.tar.gz" +MD5SUM="52e84dd472c89a64a0a6827b450f5544" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Erik Hanson" +EMAIL="erik@slackbuilds.org" diff --git a/libraries/libxmp/slack-desc b/libraries/libxmp/slack-desc new file mode 100644 index 000000000000..0ee55fcbf92a --- /dev/null +++ b/libraries/libxmp/slack-desc @@ -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 ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +libxmp: libxmp (The Extended Module Player library) +libxmp: +libxmp: Libxmp loads the module and renders the sound as linear PCM samples +libxmp: in a buffer at rate and format specified by the user. Applications +libxmp: for libxmp include players, module information extractors, module- +libxmp: to-mp3 renderers, etc. +libxmp: +libxmp: +libxmp: +libxmp: +libxmp: -- cgit v1.2.3