wok-next view gconf/receipt @ rev 20974

Fix python-shapely build
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Sep 23 04:34:15 2018 +0300 (2018-09-23)
parents d2950281f122
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="gconf"
4 VERSION="3.2.6"
5 CATEGORY="utilities"
6 SHORT_DESC="A configuration database system"
7 MAINTAINER="rcx@zoominternet.net"
8 LICENSE="LGPL2"
9 WEB_SITE="https://projects-old.gnome.org/gconf/"
11 TARBALL="GConf-$VERSION.tar.xz"
12 WGET_URL="$GNOME_MIRROR/GConf/${VERSION%.*}/$TARBALL"
14 BUILD_DEPENDS="glib-dev libxml2-dev dbus-dev dbus-glib-dev orbit2-dev intltool \
15 gobject-introspection-dev"
16 SPLIT="$PACKAGE-dev"
18 compile_rules() {
19 ./configure \
20 --disable-static \
21 $CONFIGURE_ARGS &&
22 fix libtool &&
23 make &&
24 make install
25 }
27 genpkg_rules() {
28 case $PACKAGE in
29 gconf)
30 copy @std
31 DEPENDS="dbus dbus-glib glib libxml2 orbit2"
32 ;;
33 *-dev)
34 copy @dev
35 DEPENDS="gconf glib-dev orbit2-dev"
36 ;;
37 esac
38 }