wok view xfburn/receipt @ rev 11799

ppp: build rp-pppoe.so (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 25 11:15:26 2012 +0100 (2012-02-25)
parents 948637bd0106
children 107ceec178fa
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"
13 BUILD_DEPENDS="intltool libburn-dev libexo-dev libxfcegui4-dev libisofs-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --sysconfdir=/etc \
20 --libexecdir=/usr/bin \
21 --disable-gstreamer \
22 --disable-dbus \
23 --disable-hal \
24 --disable-thunar-vfs \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/share
34 cp -a $_pkg/usr/bin $fs/usr
35 cp -a $_pkg/usr/share/applications $fs/usr/share
36 cp -a $_pkg/usr/share/icons $fs/usr/share
37 cp -a $_pkg/usr/share/xfburn $fs/usr/share
38 }