wok view xfburn/receipt @ rev 11253

upx: Fixed ucl and upx to be more compatable with my wok-tank cooking branch and still be compatible with official cookutils.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Nov 07 10:04:51 2011 +0000 (2011-11-07)
parents 7a2eada93b18
children c8d75f301f10
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"
12 DEPENDS="gtk+ libburn libexo libxfcegui4 libisofs thunar"
13 BUILD_DEPENDS="hal-dev intltool libburn-dev libexo-dev libxfcegui4-dev libisofs-dev \
14 thunar-dev thunar-vfs-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr --sysconfdir=/etc \
21 --libexecdir=/usr/bin \
22 --disable-gstreamer \
23 --disable-dbus \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/share/applications $fs/usr/share
35 cp -a $_pkg/usr/share/icons $fs/usr/share
36 cp -a $_pkg/usr/share/xfburn $fs/usr/share
37 }