audio/gmpc: Updated for version 0.20.0.

This commit is contained in:
Erik Hanson 2010-04-21 21:10:59 -04:00 committed by David Somero
parent 97dd9586aa
commit ffc0b964f7
3 changed files with 8 additions and 11 deletions

View File

@ -2,4 +2,4 @@ GMPC is a frontend for the mpd (Music Player Daemon). It's focused on
being fast and easy to use, while making optimal use of all the being fast and easy to use, while making optimal use of all the
functions in mpd. functions in mpd.
This requires libmpd and gob2 from SlackBuilds.org. This requires libmpd, gob2, and vala from SlackBuilds.org.

View File

@ -2,7 +2,7 @@
# #
# Slackware build script for GMPC # Slackware build script for GMPC
# #
# Copyright 2009 Erik W. Hanson, Minneapolis, MN, USA # Copyright 2009-2010 Erik W. Hanson, Minneapolis, MN, USA
# All rights reserved. # All rights reserved.
# #
# Redistribution and use of this script, with or without modification, is # Redistribution and use of this script, with or without modification, is
@ -23,7 +23,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=gmpc PRGNAM=gmpc
VERSION=${VERSION:-0.19.0} VERSION=${VERSION:-0.20.0}
ARCH=${ARCH:-i486} ARCH=${ARCH:-i486}
BUILD=${BUILD:-1} BUILD=${BUILD:-1}
TAG=${TAG:-_SBo} TAG=${TAG:-_SBo}
@ -66,17 +66,14 @@ CFLAGS="$SLKCFLAGS" \
--localstatedir=/var \ --localstatedir=/var \
--mandir=/usr/man \ --mandir=/usr/man \
--disable-static \ --disable-static \
--enable-configdir \
--libdir=/usr/lib${LIBDIRSUFFIX} \ --libdir=/usr/lib${LIBDIRSUFFIX} \
--build=$ARCH-slackware-linux --build=$ARCH-slackware-linux
make make
make install-strip DESTDIR=$PKG make install-strip DESTDIR=$PKG
( cd $PKG/usr/man || exit 1 find $PKG/usr/man -type f -exec gzip -9 {} \;
find . -type f -exec gzip -9 {} \; for i in $(find $PKG/usr/man -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
)
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS COPYING ChangeLog NEWS README TODO $PKG/usr/doc/$PRGNAM-$VERSION cp -a AUTHORS COPYING ChangeLog NEWS README TODO $PKG/usr/doc/$PRGNAM-$VERSION

View File

@ -1,8 +1,8 @@
PRGNAM="gmpc" PRGNAM="gmpc"
VERSION="0.19.0" VERSION="0.20.0"
HOMEPAGE="http://sarine.nl/gmpc" HOMEPAGE="http://sarine.nl/gmpc"
DOWNLOAD="http://download.sarine.nl/Programs/gmpc/0.19.0/gmpc-0.19.0.tar.gz" DOWNLOAD="http://download.sarine.nl/Programs/gmpc/0.20.0/gmpc-0.20.0.tar.gz"
MD5SUM="bbd02996b6eb389aa6c25150de87f7a2" MD5SUM="902fd69b0b6bb40abb647604080dd7ef"
DOWNLOAD_x86_64="" DOWNLOAD_x86_64=""
MD5SUM_x86_64="" MD5SUM_x86_64=""
MAINTAINER="Erik Hanson" MAINTAINER="Erik Hanson"