wok view ncmpc/receipt @ rev 16013

syslinux/iso2exe/init: fix pxe names
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 04 21:08:01 2014 +0000 (2014-03-04)
parents fc077654c9ac
children 1a0b3262dccf
line source
1 # SliTaz package receipt.
3 PACKAGE="ncmpc"
4 VERSION="0.19"
5 CATEGORY="multimedia"
6 SHORT_DESC="A ncurses MPD client."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://hem.bredband.net/kaw/ncmpc/index.html"
11 WGET_URL="$SF_MIRROR/musicpd/$PACKAGE/$VERSION/$TARBALL"
12 TAGS="music player"
14 DEPENDS="mpd glib ncurses libmpdclient"
15 BUILD_DEPENDS="pkg-config gtk+-dev ncurses-dev libmpdclient-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 $CONFIGURE_ARGS &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share/ncmpc
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/share/doc/$PACKAGE $fs/usr/share
32 }