wok view gogglesmm/receipt @ rev 2294

Up: slitaz-tools (2.9) - New boxes and tools + improvement)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 22 22:39:20 2009 +0100 (2009-02-22)
parents 3f898e9b90bd
children dbf873bf74a8
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 taglib libpng jpeg "
16 # When compiling, it needs the main packages too.
17 BUILD_DEPENDS="libfox libfox-utils xine-lib sqlite taglib
18 libfox-dev xine-lib-dev sqlite-dev taglib-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 }