wok view gogglesmm/receipt @ rev 1305

Fix: Typo in claws-mail. Sorry guys.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Mon Aug 25 09:51:40 2008 +0200 (2008-08-25)
parents
children 3f898e9b90bd
line source
1 # SliTaz package receipt.
3 PACKAGE="gogglesmm"
4 SOURCE="musicmanager"
5 VERSION="0.9.13"
6 CATEGORY="multimedia"
7 SHORT_DESC="Goggles Music Manager is nice a music collection manager and player."
8 MAINTAINER="chadi.elahmad@gmail.com"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://code.google.com/p/gogglesmm/"
12 WGET_URL="http://gogglesmm.googlecode.com/files/$TARBALL"
14 DEPENDS="libfox xine-lib sqlite libtag libpng jpeg "
16 # When compiling, it needs the main packages too.
17 BUILD_DEPENDS="libfox xine-lib sqlite libtag
18 libfox-dev xine-lib-dev sqlite-dev libtag-dev "
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 cd $src
24 ./configure \
25 --prefix=/usr \
26 --mandir=/usr/share/man \
27 --infodir=/usr/share/info \
28 $CONFIGURE_ARGS
29 make
30 make DESTDIR=$PWD/_pkg install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 # It does not use DESTDIR, and uses xgd...
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/bin $fs/usr/share/applications $fs/usr/share/pixmaps
38 cp -a $src/src/$SOURCE $fs/usr/bin/gmm
40 cp -a $src/extra/*.desktop $fs/usr/share/applications
41 cp -a $src/extra/*.png $fs/usr/share/pixmaps
42 }