wok annotate xfmpc/receipt @ rev 17157

syslinux: fix rockridge (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Sep 15 23:31:45 2014 +0200 (2014-09-15)
parents 380ffe05937a
children 9053833522ce
rev   line source
erjo@4869 1 # SliTaz package receipt.
erjo@4869 2
erjo@4869 3 PACKAGE="xfmpc"
pascal@15284 4 VERSION="0.2.2"
erjo@4869 5 CATEGORY="x-window"
erjo@4869 6 SHORT_DESC="MPD client for Xfce."
erjo@4869 7 MAINTAINER="erjo@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
erjo@4869 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@4869 10 WEB_SITE="http://goodies.xfce.org/projects/applications/xfmpc"
erjo@4869 11 WGET_URL="http://archive.xfce.org/src/apps/$PACKAGE/${VERSION%.*}/$TARBALL"
erjo@4869 12
erjo@9880 13 DEPENDS="libxfcegui4 libxfce4util libmpd startup-notification"
erjo@9880 14 BUILD_DEPENDS="libxfcegui4-dev libxfce4util-dev libmpd-dev intltool \
pascal@15284 15 libxfce4ui-dev startup-notification-dev util-linux-uuid-dev gtk+-dev"
erjo@9880 16
erjo@4869 17 # Rules to configure and make the package.
erjo@4869 18 compile_rules()
erjo@4869 19 {
erjo@4869 20 cd $src
erjo@4869 21 ./configure \
erjo@4869 22 --prefix=/usr \
erjo@4869 23 --infodir=/usr/share/info \
erjo@4869 24 --mandir=/usr/share/man \
erjo@4869 25 $CONFIGURE_ARGS &&
erjo@9880 26 make && make DESTDIR=$DESTDIR install
erjo@4869 27 }
erjo@4869 28
erjo@4869 29 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@4869 30 genpkg_rules()
erjo@4869 31 {
erjo@4869 32 mkdir -p $fs/usr
pascal@15000 33 cp -a $install/usr/bin $fs/usr
erjo@4869 34 }
erjo@4869 35