wok-6.x annotate xfburn/receipt @ rev 9056
brscan: no in genpkg_rules
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Mar 04 11:46:37 2011 +0100 (2011-03-04) |
parents | 42dbbdbd65b2 |
children | 948637bd0106 |
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" |
slaxemulator@8617 | 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 |