wok view brasero/receipt @ rev 20645

updated hostapd (2.6 -> 2.7)
author Hans-G?nter Theisgen
date Fri Jan 11 16:39:21 2019 +0100 (2019-01-11)
parents 86790a278e70
children e2f8a574b574
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="https://www.gnome.org/projects/brasero"
11 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/$PACKAGE/${VERSION%.*}/$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 file"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
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=$DESTDIR 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 $install/usr/bin $fs/usr/
43 cp -a $install/usr/lib $fs/usr/
44 cp -a $install/usr/share/applications $fs/usr/share/applications
45 }