diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-11 20:30:51 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-11 20:30:51 +0200 |
commit | 2157c6dac7ca38861294038db7d2d04553a7094c (patch) | |
tree | 40274f6a32dfc079b1891747a66850e839931708 /audio/mpc | |
parent | 9f21562211b2276ea38adb05c5af503f92ade371 (diff) | |
download | slackbuilds-2157c6dac7ca38861294038db7d2d04553a7094c.tar.gz |
audio/mpc: Moved from multimedia
Diffstat (limited to 'audio/mpc')
-rw-r--r-- | audio/mpc/README | 8 | ||||
-rw-r--r-- | audio/mpc/mpc.SlackBuild | 71 | ||||
-rw-r--r-- | audio/mpc/mpc.info | 8 | ||||
-rw-r--r-- | audio/mpc/slack-desc | 12 |
4 files changed, 99 insertions, 0 deletions
diff --git a/audio/mpc/README b/audio/mpc/README new file mode 100644 index 0000000000..feaa1b1e51 --- /dev/null +++ b/audio/mpc/README @@ -0,0 +1,8 @@ +mpc is a client for MPD, the Music Player Daemon. +mpc connects to a MPD running on a machine via a network. + +For bash tab completion, copy the mpc-bashrc file in +mpc's documentation directory to ~/.bashrc + +You will need to make sure you have set the MPD_HOST and MPD_PORT +environment variables. diff --git a/audio/mpc/mpc.SlackBuild b/audio/mpc/mpc.SlackBuild new file mode 100644 index 0000000000..66bce5d76e --- /dev/null +++ b/audio/mpc/mpc.SlackBuild @@ -0,0 +1,71 @@ +#!/bin/sh + +# Slackware build script for mpc + +# Written by Meckafett thumpadoodle@hotmail.com + +set -e + +PRGNAM=mpc +VERSION=0.12.1 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +DOCS="AUTHORS COPYING ChangeLog INSTALL README doc/mpc-bashrc doc/mppledit doc/pls-handler.sh doc/m3u-handler.sh" + +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 +rm -rf $PRGNAM-$VERSION +tar -xzvf $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 \ + --datarootdir=/usr \ + --localstatedir=/var + +make +make install DESTDIR=$PKG + +( 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 +) + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION + +# Remove the documentation wrongly installed in /usr/share/doc +rm -rf $PKG/usr/share/ +# Remove empty folder /usr/mpc +rm -rf $PKG/usr/mpc/ + +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 diff --git a/audio/mpc/mpc.info b/audio/mpc/mpc.info new file mode 100644 index 0000000000..34e7d5aad7 --- /dev/null +++ b/audio/mpc/mpc.info @@ -0,0 +1,8 @@ +PRGNAM="mpc" +VERSION="0.12.1" +HOMEPAGE="http://www.musicpd.org/mpc.shtml" +DOWNLOAD="http://www.musicpd.org/uploads/files/mpc-0.12.1.tar.gz" +MD5SUM="0be8cc9ba282f467631ee0b1b8a0c494" +MAINTAINER="Meckafett" +EMAIL="tom.bradish@gmail.com" +APPROVED="rworkman" diff --git a/audio/mpc/slack-desc b/audio/mpc/slack-desc new file mode 100644 index 0000000000..63e0e44be7 --- /dev/null +++ b/audio/mpc/slack-desc @@ -0,0 +1,12 @@ + |-----handy-ruler------------------------------------------------------| +mpc: mpc (Music Player Command) +mpc: +mpc: A client for MPD, the Music Player Daemon. mpc connects to a MPD +mpc: running on a machine via a network. +mpc: +mpc: Read more about MPD on http://www.musicpd.org. +mpc: +mpc: +mpc: +mpc: +mpc: |