wok view xfburn/receipt @ rev 15919

openbox: depends on xorg-libXcursor (fix no X in justx flavor)
author Christophe Lincoln <pankso@slitaz.org>
date Tue Feb 18 17:43:11 2014 +0100 (2014-02-18)
parents c8d75f301f10
children 4bcc8d00f1b4
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 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://goodies.xfce.org/projects/applications/xfburn"
11 WGET_URL="http://archive.xfce.org/src/apps/xfburn/0.4/$TARBALL"
13 DEPENDS="gtk+ libburn libexo libxfcegui4 libisofs"
14 BUILD_DEPENDS="intltool libburn-dev libexo-dev libxfcegui4-dev libisofs-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 sed -i 's|glib.h>|&\n#include <glib-object.h>|' xfburn/xfburn-settings.h
21 ./configure --prefix=/usr --sysconfdir=/etc \
22 --libexecdir=/usr/bin \
23 --disable-gstreamer \
24 --disable-dbus \
25 --disable-hal \
26 --disable-thunar-vfs \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$DESTDIR install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/share
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/share/applications $fs/usr/share
38 cp -a $install/usr/share/icons $fs/usr/share
39 cp -a $install/usr/share/xfburn $fs/usr/share
40 }