wok annotate xfburn/receipt @ rev 8626

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