wok view gnome-desktop/receipt @ rev 23806

linld: add isoboot
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun May 24 16:16:52 2020 +0000 (2020-05-24)
parents 6e8b1bcb30e2
children 6831608a1b2a
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="https://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 dbus-glib-dev intltool gtk+-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --sysconfdir=/etc/gnome \
24 --localstatedir=/var/lib \
25 --enable-gtk-doc-html=no \
26 --enable-gtk-doc=no \
27 --disable-scrollkeeper \
28 --disable-static \
29 --with-gnome-distributor="SliTaz GNU/Linux" \
30 $CONFIGURE_ARGS &&
31 make && make DESTDIR=$DESTDIR install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/lib $fs/usr/share
38 #cp -a $install/etc $fs
39 cp -a $install/usr/bin $fs/usr
40 cp -a $install/usr/lib/*.so* $fs/usr/lib
41 #cp -a $install/usr/share/dbus-1 $fs/usr/share
42 }