wok view xfburn/receipt @ rev 8617

Fix syntax error in xfburn.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Feb 14 15:52:23 2011 +0000 (2011-02-14)
parents 42dbbdbd65b2
children 948637bd0106
line source
1 # SliTaz package receipt.
3 PACKAGE="xfburn"
4 VERSION="0.4.3"
5 CATEGORY="utilities"
6 SHORT_DESC="GTK+ based CD and DVD burning application"
7 MAINTAINER="devl547@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://goodies.xfce.org/projects/applications/xfburn"
10 WGET_URL="http://archive.xfce.org/src/apps/xfburn/0.4/$TARBALL"
11 BUILD_DEPENDS="intltool"
12 DEPENDS="gtk+ libburn libexo libxfcegui4 libisofs thunar"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --sysconfdir=/etc \
19 --libexecdir=/usr/bin --mandir=/usr/share/man \
20 --disable-gstreamer \
21 --disable-dbus \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/share/applications $fs/usr/share
33 cp -a $_pkg/usr/share/icons $fs/usr/share
34 cp -a $_pkg/usr/share/xfburn $fs/usr/share
35 }