wok view xfmpc/receipt @ rev 20671

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 24 11:33:03 2019 +0100 (2019-01-24)
parents 9053833522ce
children 17091bc7c301
line source
1 # SliTaz package receipt.
3 PACKAGE="xfmpc"
4 VERSION="0.2.2"
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="https://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 libxfce4ui-dev startup-notification-dev util-linux-uuid-dev gtk+-dev \
16 xcb-util-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure \
23 --prefix=/usr \
24 --infodir=/usr/share/info \
25 --mandir=/usr/share/man \
26 $CONFIGURE_ARGS &&
27 make && make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 cp -a $install/usr/bin $fs/usr
35 }