wok view ario/receipt @ rev 3029

Up: dnsmasq (2.47)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Tue May 12 02:01:41 2009 +0200 (2009-05-12)
parents d641c8afb834
children 2bbc0ef3f1d2
line source
1 # SliTaz package receipt.
3 PACKAGE="ario"
4 VERSION="1.2.2"
5 CATEGORY="multimedia"
6 SHORT_DESC="GTK clien for MPD"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="libgcrypt gtk+ libcurl libglade"
9 BUILD_DEPENDS="libgcrypt-dev libglade-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://ario-player.sourceforge.net/index.php?en"
12 WGET_URL="http://freefr.dl.sourceforge.net/sourceforge/ario-player/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 --disable-dbus \
23 --disable-notify \
24 --disable-audioscrobbler \
25 --disable-avahi \
26 $CONFIGURE_ARGS &&
27 make && make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/share/locale/
35 cp -a $_pkg/usr/bin $fs/usr
36 cp -a $_pkg/usr/lib $fs/usr
37 cp -a $_pkg/usr/share/applications $fs/usr/share
38 cp -a $_pkg/usr/share/icons $fs/usr/share
39 cp -a $_pkg/usr/share/ario $fs/usr/share
40 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
42 strip -s $fs/usr/lib/ario/plugins/*.so
44 # Cleanup
45 rm -f $fs/usr/lib/ario/plugins/*.?a
47 strip -s $fs/usr/lib/ario/plugins/*.so
50 }