wok view gnome-desktop/receipt @ rev 22056

updated ttyload (0.5 -> 0.5.3)
author Hans-G?nter Theisgen
date Wed Oct 23 15:56:36 2019 +0100 (2019-10-23)
parents 380ffe05937a
children 7bee98929640
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 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 }