wok-6.x diff xfburn/receipt @ rev 5773
Up busybox (1.17.0)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Jul 06 15:09:01 2010 +0200 (2010-07-06) |
parents | |
children | f37dbb86b897 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/xfburn/receipt Tue Jul 06 15:09:01 2010 +0200 1.3 @@ -0,0 +1,37 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="xfburn" 1.7 +VERSION="0.4.3" 1.8 +CATEGORY="utilities" 1.9 +SHORT_DESC="GTK+ based CD and DVD burning application" 1.10 +MAINTAINER="devl547@gmail.com" 1.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.12 +WEB_SITE="http://goodies.xfce.org/projects/applications/xfburn" 1.13 +WGET_URL="http://archive.xfce.org/src/apps/xfburn/0.4/$TARBALL" 1.14 +BUILD_DEPENDS="gtk+-dev libburn libburn-dev libexo-dev \ 1.15 +libxfcegui4-dev libisofs-dev libisofs" 1.16 +DEPENDS="gtk+ libburn libexo libxfcegui4 libisofs" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + cd $src 1.22 + ./configure --prefix=/usr --sysconfdir=/etc \ 1.23 + --libexecdir=/usr/bin --mandir=/usr/share/man \ 1.24 + --disable-gstreamer \ 1.25 + --disable-dbus \ 1.26 + $CONFIGURE_ARGS && 1.27 + make && 1.28 + make DESTDIR=$PWD/_pkg install 1.29 +} 1.30 + 1.31 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.32 +genpkg_rules() 1.33 +{ 1.34 + mkdir -p $fs/usr/share 1.35 + cp -a $_pkg/usr/bin $fs/usr 1.36 + cp -a $_pkg/usr/share/applications $fs/usr/share 1.37 + cp -a $_pkg/usr/share/icons $fs/usr/share 1.38 + cp -a $_pkg/usr/share/xfburn $fs/usr/share 1.39 +} 1.40 +