wok-next view brasero/receipt @ rev 20514

ardour, gdal, icu, js, jsoncpp, libvpx, llvm, mesa, minetest, opencv, qt5, scilab, webkit2gtk, webkitgtk, xalan-c: remove std.patch, use `fix math`.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 21 16:15:19 2018 +0200 (2018-03-21)
parents 7eb047d2b438
children 757d032c55c7
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/${VERSION%.*}/$TARBALL"
13 DEPENDS="glib gtk+ GConf gstreamer0 gst0-plugins-base libxml2 libunique \
14 dbus-glib cdrdao dvd+rw-tools libcanberra libvorbis libogg"
15 BUILD_DEPENDS="glib-dev gtk+-dev GConf-dev gstreamer0-dev gst0-plugins-base-dev \
16 libxml2-dev libunique-dev dbus-glib-dev gnome-doc-utils-dev xorg-libxcb-dev \
17 libpthread-stubs xorg-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 ./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 }