wok view brasero/receipt @ rev 17863

webkit-r: Fix build
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Mar 25 15:28:36 2015 +0100 (2015-03-25)
parents f32d3ba00836
children d3eb5f4b53ea
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 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.gnome.org/projects/brasero"
11 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/$PACKAGE/2.30/$TARBALL"
13 DEPENDS="glib gtk+ GConf gstreamer gst-plugins-base libxml2 libunique \
14 dbus-glib cdrdao dvd+rw-tools libcanberra libvorbis libogg"
15 BUILD_DEPENDS="glib-dev gtk+-dev GConf-dev gstreamer-dev gst-plugins-base-dev \
16 libxml2-dev libunique-dev dbus-glib-dev gnome-doc-utils-dev libxcb-dev \
17 libpthread-stubs xcb-util-dev ORBit2-dev dbus-dev libcanberra-dev \
18 gnome-doc-utils libxml2-python libvorbis-dev libogg-dev util-linux-uuid-dev \
19 intltool libtool"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 cd $src
25 ./configure \
26 --prefix=/usr \
27 --disable-schemas-install \
28 --disable-scrollkeeper \
29 --disable-caches \
30 --disable-gtk-doc-html \
31 --disable-nautilus \
32 --disable-gtk-doc \
33 --disable-search \
34 --disable-playlist &&
35 make &&
36 make DESTDIR=$DESTDIR install
37 }
39 # Rules to gen a SliTaz package suitable for Tazpkg.
40 genpkg_rules()
41 {
42 mkdir -p $fs/usr/share
43 cp -a $install/usr/bin $fs/usr/
44 cp -a $install/usr/lib $fs/usr/
45 cp -a $install/usr/share/applications $fs/usr/share/applications
46 }