mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
audio/ncmpc: Updated for version 0.21 + new maintainer.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
13a2c54d6d
commit
fa30cf97ce
3 changed files with 20 additions and 18 deletions
|
@ -3,6 +3,7 @@
|
|||
# Slackware build script for ncmpc
|
||||
|
||||
# Copyright 2006-2010 Andrew Brouwers <abrouwers@gmail.com>
|
||||
# Copyright 2014 Luka Novsak <lnovsak@gmail.com>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -25,7 +26,7 @@
|
|||
# Modified by the SlackBuilds.org project
|
||||
|
||||
PRGNAM=ncmpc
|
||||
VERSION=0.16
|
||||
VERSION=${VERSION:-0.21}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -56,12 +57,14 @@ else
|
|||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP || exit 1
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 || exit 1
|
||||
cd $PRGNAM-$VERSION || exit 1
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
|
@ -74,16 +77,15 @@ CXXFLAGS="$SLKCFLAGS" \
|
|||
./configure \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--mandir=/usr/man \
|
||||
|| exit 1
|
||||
--mandir=/usr/man
|
||||
|
||||
make || exit 1
|
||||
make install-strip DESTDIR=$PKG || exit 1
|
||||
make
|
||||
make install-strip DESTDIR=$PKG
|
||||
|
||||
gzip -9 $PKG/usr/man/man?/*
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS COPYING ChangeLog NEWS README doc/config.sample \
|
||||
cp -a AUTHORS COPYING NEWS README doc/config.sample \
|
||||
doc/keys.sample doc/ncmpc.lirc $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
rm -rf $PKG/usr/share/{doc,ncmpc}
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="ncmpc"
|
||||
VERSION="0.16"
|
||||
HOMEPAGE="http://mpd.wikia.com/wiki/Client:Ncmpc"
|
||||
DOWNLOAD="http://www.musicpd.org/download/ncmpc/old/ncmpc-0.16.tar.bz2"
|
||||
MD5SUM="63b6bf666b6326c87abdea5f900a4fc3"
|
||||
VERSION="0.21"
|
||||
HOMEPAGE="http://www.musicpd.org/clients/ncmpc/"
|
||||
DOWNLOAD="http://www.musicpd.org/download/ncmpc/0/ncmpc-0.21.tar.bz2"
|
||||
MD5SUM="f26658e84ce08019bf3fe5857f6f4014"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="libmpdclient"
|
||||
MAINTAINER="Andrew Brouwers"
|
||||
EMAIL="abrouwers@gmail.com"
|
||||
MAINTAINER="Luka Novsak"
|
||||
EMAIL="lnovsak@gmail.com"
|
||||
|
|
Loading…
Reference in a new issue