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

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents 757d032c55c7
children a3c581bf52b8
line source
1 # SliTaz package receipt v2.
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 WEB_SITE="http://www.gnome.org"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
14 BUILD_DEPENDS="python-dev libxml2-python GConf-dev gnome-doc-utils \
15 intltool gtk+-dev xorg-libXrandr-dev"
16 SPLIT="gnome-desktop-dev"
18 compile_rules() {
19 ./configure \
20 --sysconfdir=/etc/gnome \
21 --localstatedir=/var/lib \
22 --enable-gtk-doc-html=no \
23 --enable-gtk-doc=no \
24 --disable-scrollkeeper \
25 --disable-static \
26 --with-gnome-distributor="SliTaz GNU/Linux" \
27 $CONFIGURE_ARGS &&
28 fix libtool &&
29 make &&
30 make DESTDIR=$DESTDIR install
31 }
33 genpkg_rules() {
34 case $PACKAGE in
35 gnome-desktop)
36 copy bin/ *.so*
37 DEPENDS="GConf gtk+ startup-notification"
38 ;;
39 *-dev)
40 copy @dev
41 ;;
42 esac
43 }