wok view xfmpc/receipt @ rev 15000

Add some GPL2 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 17:00:38 2013 +0000 (2013-08-10)
parents 29dbf8b6263e
children ac66a25f97d6
line source
1 # SliTaz package receipt.
3 PACKAGE="xfmpc"
4 VERSION="0.2.0"
5 CATEGORY="x-window"
6 SHORT_DESC="MPD client for Xfce."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://goodies.xfce.org/projects/applications/xfmpc"
11 WGET_URL="http://archive.xfce.org/src/apps/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="libxfcegui4 libxfce4util libmpd startup-notification"
14 BUILD_DEPENDS="libxfcegui4-dev libxfce4util-dev libmpd-dev intltool \
15 startup-notification-dev util-linux-uuid-dev gtk+-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make && make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/bin $fs/usr
34 }