wok-next view gnome-desktop/receipt @ rev 20142

vlc: receipt v2
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Nov 01 11:06:02 2017 +0100 (2017-11-01)
parents 380ffe05937a
children 4396aed7eb01
line source
1 # SliTaz package receipt.
3 PACKAGE="gnome-desktop"
4 VERSION="2.28.0"
5 CATEGORY="x-window"
6 SHORT_DESC="GNOME Desktop"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.gnome.org"
11 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="GConf gtk+ startup-notification"
14 BUILD_DEPENDS="python-dev libxml2-python GConf-dev gnome-doc-utils-dev \
15 intltool gtk+-dev xorg-libXrandr-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 --sysconfdir=/etc/gnome \
23 --localstatedir=/var/lib \
24 --enable-gtk-doc-html=no \
25 --enable-gtk-doc=no \
26 --disable-scrollkeeper \
27 --disable-static \
28 --with-gnome-distributor="SliTaz GNU/Linux" \
29 $CONFIGURE_ARGS &&
30 make && make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/lib $fs/usr/share
37 #cp -a $install/etc $fs
38 cp -a $install/usr/bin $fs/usr
39 cp -a $install/usr/lib/*.so* $fs/usr/lib
40 #cp -a $install/usr/share/dbus-1 $fs/usr/share
41 }