wok-next view libgnome/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 342b30daff76
children a3c581bf52b8
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libgnome"
4 VERSION="2.32.1"
5 CATEGORY="x-window"
6 SHORT_DESC="GNOME Library"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.gnome.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
14 BUILD_DEPENDS="automake libtool gettext GConf-dev intltool gnome-vfs-dev \
15 libbonobo-dev libcanberra-dev popt-dev libgcrypt-dev"
16 SPLIT="libgnome-dev"
18 compile_rules() {
19 autoreconf -fi
21 ./configure \
22 --sysconfdir=/etc/gnome \
23 --localstatedir=/var/lib \
24 $CONFIGURE_ARGS &&
25 fix libtool &&
26 make &&
27 make install || return 1
29 mkdir -p $install/usr/share/images
30 ln -s ../pixmaps/backgrounds/gnome/background-default.jpg \
31 $install/usr/share/images/gnome-default.jpg
32 }
34 genpkg_rules() {
35 case $PACKAGE in
36 libgnome)
37 copy @std
38 DEPENDS="GConf glib gnome-vfs libbonobo libcanberra orbit2 popt"
39 ;;
40 *-dev)
41 copy @dev
42 DEPENDS="libgnome GConf-dev glib-dev gnome-vfs-dev libbonobo-dev \
43 libcanberra-dev orbit2-dev popt-dev"
44 ;;
45 esac
46 }