mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
audio/mpc123: Removed (required dep is unavailable)
libmpcdec is unmaintained and conflicts with musepack-tools anyway, so we'll just remove mpc123 and avoid the problem. Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
a19c250648
commit
bce0400f30
4 changed files with 0 additions and 125 deletions
|
@ -1,11 +0,0 @@
|
||||||
mpc123 (console Musepack audio player)
|
|
||||||
|
|
||||||
mpc123 is your handy Musepack audio player!
|
|
||||||
It uses libmpcdec to decode Musepack streams and its features are:
|
|
||||||
* plain file playing - that's easy ;)
|
|
||||||
* playlists
|
|
||||||
* random, shuffle
|
|
||||||
* output to file (wav, cdr, au)
|
|
||||||
* and more...
|
|
||||||
|
|
||||||
Requires libmpcdec available at SlackBuilds.org
|
|
|
@ -1,85 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# Slackware build script for mpc123
|
|
||||||
|
|
||||||
# Written by Luis Henrique <lmello.009@gmail.com>
|
|
||||||
|
|
||||||
PRGNAM=mpc123
|
|
||||||
VERSION=${VERSION:-0.2.4}
|
|
||||||
BUILD=${BUILD:-1}
|
|
||||||
TAG=${TAG:-_SBo}
|
|
||||||
|
|
||||||
# Automatically determine the architecture we're building on:
|
|
||||||
if [ -z "$ARCH" ]; then
|
|
||||||
case "$( uname -m )" in
|
|
||||||
i?86) ARCH=i486 ;;
|
|
||||||
arm*) ARCH=arm ;;
|
|
||||||
# Unless $ARCH is already set, use uname -m for all other archs:
|
|
||||||
*) ARCH=$( uname -m ) ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
CWD=$(pwd)
|
|
||||||
TMP=${TMP:-/tmp/SBo}
|
|
||||||
PKG=$TMP/package-$PRGNAM
|
|
||||||
OUTPUT=${OUTPUT:-/tmp}
|
|
||||||
|
|
||||||
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 -e # Exit on most errors
|
|
||||||
|
|
||||||
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 .
|
|
||||||
find . \
|
|
||||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
|
||||||
-exec chmod 755 {} \; -o \
|
|
||||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
|
||||||
-exec chmod 644 {} \;
|
|
||||||
|
|
||||||
CFLAGS="$SLKCFLAGS" \
|
|
||||||
CXXFLAGS="$SLKCFLAGS" \
|
|
||||||
make
|
|
||||||
|
|
||||||
# Install the package:
|
|
||||||
ginstall -m 755 -d $PKG/usr/bin
|
|
||||||
ginstall -m 755 -s mpc123 $PKG/usr/bin
|
|
||||||
ginstall -m 755 -d $PKG/usr/man/man1
|
|
||||||
ginstall -m 644 mpc123.1 $PKG/usr/man/man1
|
|
||||||
ginstall -m 755 -d $PKG/usr/share/locale/it/LC_MESSAGES
|
|
||||||
ginstall -m 644 LOCALES/it/LC_MESSAGES/mpc123.mo $PKG/usr/share/locale/it/LC_MESSAGES
|
|
||||||
ginstall -m 644 LOCALES/it/LC_MESSAGES/mpc123.po $PKG/usr/share/locale/it
|
|
||||||
|
|
||||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
|
||||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
|
||||||
|
|
||||||
( 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
|
|
||||||
)
|
|
||||||
|
|
||||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
|
||||||
cp -a AUTHORS COPYING ChangeLog LICENSE 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.${PKGTYPE:-tgz}
|
|
|
@ -1,10 +0,0 @@
|
||||||
PRGNAM="mpc123"
|
|
||||||
VERSION="0.2.4"
|
|
||||||
HOMEPAGE="http://mpc123.sourceforge.net/"
|
|
||||||
DOWNLOAD="http://downloads.sourceforge.net/mpc123/mpc123-0.2.4.tar.gz"
|
|
||||||
MD5SUM="88bd86b726142dcf07252d3ab4658b03"
|
|
||||||
DOWNLOAD_x86_64=""
|
|
||||||
MD5SUM_x86_64=""
|
|
||||||
MAINTAINER="Luis Henrique"
|
|
||||||
EMAIL="lmello.009@gmail.com"
|
|
||||||
APPROVED="dsomero"
|
|
|
@ -1,19 +0,0 @@
|
||||||
# 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-------------------------------------------------------|
|
|
||||||
mpc123: mpc123 (console Musepack audio player)
|
|
||||||
mpc123:
|
|
||||||
mpc123: mpc123 is your handy Musepack audio player!
|
|
||||||
mpc123: It uses libmpcdec to decode Musepack streams and its features are:
|
|
||||||
mpc123:
|
|
||||||
mpc123: * plain file playing - that's easy ;)
|
|
||||||
mpc123: * playlists
|
|
||||||
mpc123: * random, shuffle
|
|
||||||
mpc123: * output to file (wav, cdr, au)
|
|
||||||
mpc123: * and more...
|
|
||||||
mpc123:
|
|
Loading…
Reference in a new issue