wok annotate xfburn/receipt @ rev 7377

Modify locale-zh_CN to enable display Chinese Font correctly
author fireflyoo <lufeng369@gmail.com>
date Thu Nov 25 22:17:40 2010 +0000 (2010-11-25)
parents
children f37dbb86b897
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"
devl547@5626 11 BUILD_DEPENDS="gtk+-dev libburn libburn-dev libexo-dev \
devl547@5626 12 libxfcegui4-dev libisofs-dev libisofs"
devl547@5626 13 DEPENDS="gtk+ libburn libexo libxfcegui4 libisofs"
devl547@5626 14
devl547@5626 15 # Rules to configure and make the package.
devl547@5626 16 compile_rules()
devl547@5626 17 {
devl547@5626 18 cd $src
devl547@5626 19 ./configure --prefix=/usr --sysconfdir=/etc \
devl547@5626 20 --libexecdir=/usr/bin --mandir=/usr/share/man \
devl547@5626 21 --disable-gstreamer \
devl547@5626 22 --disable-dbus \
devl547@5626 23 $CONFIGURE_ARGS &&
devl547@5626 24 make &&
devl547@5626 25 make DESTDIR=$PWD/_pkg install
devl547@5626 26 }
devl547@5626 27
devl547@5626 28 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@5626 29 genpkg_rules()
devl547@5626 30 {
devl547@5626 31 mkdir -p $fs/usr/share
devl547@5626 32 cp -a $_pkg/usr/bin $fs/usr
devl547@5626 33 cp -a $_pkg/usr/share/applications $fs/usr/share
devl547@5626 34 cp -a $_pkg/usr/share/icons $fs/usr/share
devl547@5626 35 cp -a $_pkg/usr/share/xfburn $fs/usr/share
devl547@5626 36 }
devl547@5626 37