wok-4.x rev 1377
Add: ncmpc (mpd ncurses client)
author | Paul Issott <paul@slitaz.org> |
---|---|
date | Thu Sep 11 15:19:20 2008 +0000 (2008-09-11) |
parents | 22827ce7ab0e |
children | 1a375f41366b |
files | ncmpc/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/ncmpc/receipt Thu Sep 11 15:19:20 2008 +0000 1.3 @@ -0,0 +1,33 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="ncmpc" 1.7 +VERSION="0.11.1" 1.8 +CATEGORY="multimedia" 1.9 +SHORT_DESC="A ncurses MPD client." 1.10 +MAINTAINER="paul@slitaz.org" 1.11 +DEPENDS="mpd" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.13 +WEB_SITE="http://hem.bredband.net/kaw/ncmpc/index.html" 1.14 +WGET_URL="http://hem.bredband.net/kaw/ncmpc/files/$TARBALL" 1.15 + 1.16 +# Rules to configure and make the package. 1.17 +compile_rules() 1.18 +{ 1.19 + cd $src 1.20 + ./configure \ 1.21 + --enable-search-screen \ 1.22 + --enable-clock-screen \ 1.23 + --prefix=/usr --infodir=/usr/share/info \ 1.24 + --mandir=/usr/share/man $CONFIGURE_ARGS 1.25 + make 1.26 + make DESTDIR=$PWD/_pkg install 1.27 +} 1.28 + 1.29 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.30 +genpkg_rules() 1.31 +{ 1.32 + mkdir -p $fs/usr/share/ncmpc 1.33 + cp -a $_pkg/usr/bin $fs/usr 1.34 + cp -a $_pkg/usr/share/doc/$PACKAGE $fs/usr/share 1.35 +} 1.36 +