wok view ario/receipt @ rev 12099

sarg-php: Fix perm
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Mar 11 02:56:40 2012 +0100 (2012-03-11)
parents f25cbe972b29
children c192feb5266a
line source
1 # SliTaz package receipt.
3 PACKAGE="ario"
4 VERSION="1.4.4"
5 CATEGORY="multimedia"
6 SHORT_DESC="GTK client for MPD"
7 MAINTAINER="erjo@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://ario-player.sourceforge.net/index.php?en"
10 WGET_URL="http://freefr.dl.sourceforge.net/sourceforge/ario-player/$TARBALL"
11 TAGS="music audio player mp3 ogg"
13 DEPENDS="libgcrypt gtk+ libcurl libglade libmpdclient taglib dbus-glib \
14 libunique libtasn1"
15 BUILD_DEPENDS="glib-dev gnutls-dev taglib-dev intltool libunique-dev \
16 libtasn1-dev libgcrypt-dev curl-dev libglade-dev taglib-dev libmpdclient-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 --disable-dbus \
27 --disable-notify \
28 --disable-mpdidle \
29 --disable-audioscrobbler \
30 --disable-avahi \
31 $CONFIGURE_ARGS &&
32 make -j1 && make -j1 DESTDIR=$PWD/_pkg install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr/share/locale/
40 cp -a $_pkg/usr/bin $fs/usr
41 cp -a $_pkg/usr/lib $fs/usr
42 cp -a $_pkg/usr/share/applications $fs/usr/share
43 cp -a $_pkg/usr/share/icons $fs/usr/share
44 cp -a $_pkg/usr/share/ario $fs/usr/share
45 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
47 # Cleanup
48 rm -f $fs/usr/lib/ario/plugins/*.?a
49 }