wok view graveman/receipt @ rev 9897

ruby-entreprise: fix rm headers (we have i686 now not i486)
author Christophe Lincoln <pankso@slitaz.org>
date Tue May 17 11:43:54 2011 +0200 (2011-05-17)
parents 7f0604e0bde0
children 01132274fb89
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 DEPENDS="readom dvd+rw-tools dvd+rw-media-tools sox cdrdao libid3tag libmad lame libvorbis libogg flac libglade libmng"
9 BUILD_DEPENDS="intltool"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://graveman.tuxfamily.org"
12 WGET_URL="$WEB_SITE/sources/$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 $CONFIGURE_ARGS &&
23 make && make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share/locale
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/share/applications $fs/usr/share
32 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
33 cp -a $_pkg/usr/share/graveman $fs/usr/share
34 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
35 }