wok view brasero/receipt @ rev 13055

brasero: add libs (thanks mojo)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jun 20 17:42:34 2012 +0200 (2012-06-20)
parents f08c5995e15e
children 7896f0694ef6
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-uuid-dev \
18 intltool libtool"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 cd $src
24 ./configure \
25 --prefix=/usr \
26 --disable-schemas-install \
27 --disable-scrollkeeper \
28 --disable-caches \
29 --disable-gtk-doc-html \
30 --disable-nautilus \
31 --disable-gtk-doc \
32 --disable-search \
33 --disable-playlist &&
34 make &&
35 make DESTDIR=$PWD/_pkg install
36 }
38 # Rules to gen a SliTaz package suitable for Tazpkg.
39 genpkg_rules()
40 {
41 mkdir -p $fs/usr/share
42 cp -a $_pkg/usr/bin $fs/usr/
43 cp -a $_pkg/usr/lib $fs/usr/
44 cp -a $_pkg/usr/share/applications $fs/usr/share/applications
45 }