wok view graveman/receipt @ rev 11573

Fix build/host configure option in recipes which was not detecting the right ones well + tiny fixes.
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Jan 02 23:06:18 2012 +0100 (2012-01-02)
parents 01132274fb89
children 7620b0571662
line source
1 # SliTaz package receipt.
3 PACKAGE="graveman"
4 VERSION="0.3.12-5"
5 CATEGORY="utilities"
6 SHORT_DESC="frontend for cd-burning tools"
7 MAINTAINER="allan316@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://graveman.tuxfamily.org"
10 WGET_URL="$WEB_SITE/sources/$TARBALL"
12 DEPENDS="readom dvd+rw-tools dvd+rw-media-tools sox cdrdao libid3tag libmad lame libvorbis libogg flac libglade libmng"
13 BUILD_DEPENDS="intltool libglade-dev flac-dev lame-dev libmng-dev libogg-dev libmad-dev libvorbis-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share/locale
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/share/applications $fs/usr/share
31 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
32 cp -a $_pkg/usr/share/graveman $fs/usr/share
33 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
34 }