wok annotate ncmpc/receipt @ rev 15908
python-elaphe,python-barcode,python-jcconv: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Feb 15 11:55:21 2014 +0000 (2014-02-15) |
parents | fc077654c9ac |
children | 1a0b3262dccf |
rev | line source |
---|---|
paul@1377 | 1 # SliTaz package receipt. |
paul@1377 | 2 |
paul@1377 | 3 PACKAGE="ncmpc" |
paul@10910 | 4 VERSION="0.19" |
paul@1377 | 5 CATEGORY="multimedia" |
paul@1377 | 6 SHORT_DESC="A ncurses MPD client." |
paul@1377 | 7 MAINTAINER="paul@slitaz.org" |
pascal@15001 | 8 LICENSE="GPL2" |
pascal@10615 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
paul@1377 | 10 WEB_SITE="http://hem.bredband.net/kaw/ncmpc/index.html" |
pascal@10615 | 11 WGET_URL="$SF_MIRROR/musicpd/$PACKAGE/$VERSION/$TARBALL" |
jozee@4969 | 12 TAGS="music player" |
paul@1377 | 13 |
pascal@15001 | 14 DEPENDS="mpd glib ncurses libmpdclient" |
pascal@15001 | 15 BUILD_DEPENDS="pkg-config gtk+-dev ncurses-dev libmpdclient-dev" |
pascal@15001 | 16 |
paul@1377 | 17 # Rules to configure and make the package. |
paul@1377 | 18 compile_rules() |
paul@1377 | 19 { |
paul@1377 | 20 cd $src |
paul@1377 | 21 ./configure \ |
slaxemulator@10204 | 22 $CONFIGURE_ARGS && |
slaxemulator@10204 | 23 make && make install |
paul@1377 | 24 } |
paul@1377 | 25 |
paul@1377 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@1377 | 27 genpkg_rules() |
paul@1377 | 28 { |
paul@1377 | 29 mkdir -p $fs/usr/share/ncmpc |
slaxemulator@10881 | 30 cp -a $install/usr/bin $fs/usr |
slaxemulator@10881 | 31 cp -a $install/usr/share/doc/$PACKAGE $fs/usr/share |
paul@1377 | 32 } |
paul@1377 | 33 |