diff options
author | Kristaps Esterlins <esterlins@gmail.com> | 2010-05-11 22:54:09 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 22:54:09 +0200 |
commit | 9b7a615b308aa28c83472b953307debfe2094368 (patch) | |
tree | 8a5b49fdb7f2329bf22341618f6c0b429afa59eb /libraries | |
parent | 3f194ad31de9b797c846c6454c8c5d270df98f17 (diff) | |
download | slackbuilds-9b7a615b308aa28c83472b953307debfe2094368.tar.gz |
libraries/libmpd: Added to 12.1 repository
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/libmpd/README | 2 | ||||
-rw-r--r-- | libraries/libmpd/libmpd.SlackBuild | 64 | ||||
-rw-r--r-- | libraries/libmpd/libmpd.info | 8 | ||||
-rw-r--r-- | libraries/libmpd/slack-desc | 20 |
4 files changed, 94 insertions, 0 deletions
diff --git a/libraries/libmpd/README b/libraries/libmpd/README new file mode 100644 index 0000000000..59fad04812 --- /dev/null +++ b/libraries/libmpd/README @@ -0,0 +1,2 @@ +Libmpd is a library to easily connect to a mpd server. +It wraps around libmpdclient and provides a higher level api. diff --git a/libraries/libmpd/libmpd.SlackBuild b/libraries/libmpd/libmpd.SlackBuild new file mode 100644 index 0000000000..5f0df55e1e --- /dev/null +++ b/libraries/libmpd/libmpd.SlackBuild @@ -0,0 +1,64 @@ +#!/bin/sh + +# Slackware build script for libmpd +# Written by Kristaps Esterlins <esterlinsh[at]gmail.com> + +PRGNAM=libmpd +VERSION=0.15.0 +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" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" +fi + +set -e + +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" \ +./configure \ + --prefix=/usr \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --enable-static=no \ + --build=$ARCH-slackware-linux + +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 || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null +) + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS COPYING INSTALL NEWS README $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 diff --git a/libraries/libmpd/libmpd.info b/libraries/libmpd/libmpd.info new file mode 100644 index 0000000000..862f73f273 --- /dev/null +++ b/libraries/libmpd/libmpd.info @@ -0,0 +1,8 @@ +PRGNAM="libmpd" +VERSION="0.15.0" +HOMEPAGE="http://www.sarine.nl/libmpd" +DOWNLOAD="http://download.sarine.nl/gmpc-0.15.5/libmpd-0.15.0.tar.gz" +MD5SUM="723f84bb2d42deee76d2ebea6db61656" +MAINTAINER="Kristaps Esterlins" +EMAIL="esterlins@gmail.com" +APPROVED="rworkman" diff --git a/libraries/libmpd/slack-desc b/libraries/libmpd/slack-desc new file mode 100644 index 0000000000..529f0c959f --- /dev/null +++ b/libraries/libmpd/slack-desc @@ -0,0 +1,20 @@ +# 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------------------------------------------------------| +libmpd: libmpd (library for connecting to mpd servers) +libmpd: +libmpd: libmpd is a libary to easily connect to a mpd server. +libmpd: +libmpd: +libmpd: +libmpd: +libmpd: +libmpd: +libmpd: +libmpd: + |