wok view brasero/receipt @ rev 11389

Compat: make local-pack.functions in slitaz-i18n compatible with tazwok
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sat Dec 10 05:03:51 2011 +0100 (2011-12-10)
parents
children c1613263eeab
line source
1 # SliTaz package receipt.
3 PACKAGE="brasero"
4 VERSION="2.30.0"
5 CATEGORY="utilities"
6 SHORT_DESC="Brasero (aka Bonfire) is yet another application to burn CD/DVD for the gnome desktop."
7 MAINTAINER="devl547@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.gnome.org/projects/brasero"
10 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/$PACKAGE/2.30/$TARBALL"
12 DEPENDS="glib gtk+ GConf gstreamer gst-plugins-base libxml2 libunique \
13 dbus-glib cdrdao dvd+rw-tools libcanberra libvorbis libogg"
14 BUILD_DEPENDS="glib-dev gtk+-dev GConf-dev gstreamer-dev gst-plugins-base-dev \
15 libxml2-dev libunique-dev dbus-glib-dev gnome-doc-utils-dev libxcb-dev \
16 libpthread-stubs xcb-util-dev ORBit2-dev dbus-dev libcanberra-dev \
17 gnome-doc-utils libxml2-python libvorbis-dev libogg-dev util-linux-ng-uuid-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 ./configure \
24 --prefix=/usr \
25 --disable-schemas-install \
26 --disable-scrollkeeper \
27 --disable-caches \
28 --disable-gtk-doc-html \
29 --disable-nautilus \
30 --disable-gtk-doc \
31 --disable-search \
32 --disable-playlist &&
33 make &&
34 make DESTDIR=$PWD/_pkg install
35 }
37 # Rules to gen a SliTaz package suitable for Tazpkg.
38 genpkg_rules()
39 {
40 mkdir -p $fs/usr/share
41 cp -a $_pkg/usr/bin $fs/usr/
42 cp -a $_pkg/usr/share/applications $fs/usr/share/applications
43 }