diff options
Diffstat (limited to 'multimedia/orpheus/orpheus.SlackBuild')
-rw-r--r-- | multimedia/orpheus/orpheus.SlackBuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/multimedia/orpheus/orpheus.SlackBuild b/multimedia/orpheus/orpheus.SlackBuild new file mode 100644 index 0000000000..b41b1d5a6e --- /dev/null +++ b/multimedia/orpheus/orpheus.SlackBuild @@ -0,0 +1,58 @@ +#!/bin/sh + +# Slackware build script for orpheus. +# Written by eroc <eroc@linuxmail.org> + +# Modified by the SlackBuilds.org project + +PRGNAM=orpheus +VERSION=1.6 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +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" +fi + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP || exit 1 +rm -rf $PRGNAM-$VERSION +tar -xjvf $CWD/$PRGNAM-$VERSION.tar.bz2 || exit 1 +cd $PRGNAM-$VERSION || exit 1 + +chown -R root:root . +chmod -R a-s,u+rw,go-w . + +# If the C*FLAGS are declared, then its going to result in an error: +# "can only configure for one host and one target at a time" +# so its better to unset them +# This is not *our* bug - feel free to notify the upstream authors... :) +unset CFLAGS CXXFLAGS +./configure \ + --prefix=/usr \ + || exit 1 + +make || exit 1 +make install-strip DESTDIR=$PKG || exit 1 + +mkdir -p $PKG/usr/man/man1 +gzip -c9 orpheus.1 > $PKG/usr/man/man1/orpheus.1.gz + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a ABOUT-NLS AUTHORS COPYING ChangeLog FAQ INSTALL NEWS README TODO \ + $PKG/usr/doc/$PRGNAM-$VERSION +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.tgz |