wok view graveman/receipt @ rev 9030

Fixed cyrus-sasl-pam.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Mar 03 16:29:06 2011 +0000 (2011-03-03)
parents 2020626843db
children 02bbaa9d12ba
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 strip -s $fs/usr/bin/*
36 }