wok-next view gconf/receipt @ rev 21153

Small updates.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 31 16:45:41 2019 +0200 (2019-01-31)
parents d5aab818505e
children
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="devel@slitaz.org"
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 COOKOPTS="force-arch" # different .gir
16 BUILD_DEPENDS="glib-dev libxml2-dev dbus-dev dbus-glib-dev orbit2-dev intltool \
17 gobject-introspection-dev"
18 SPLIT="$PACKAGE-dev"
20 compile_rules() {
21 ./configure \
22 --disable-static \
23 $CONFIGURE_ARGS &&
24 fix libtool &&
25 make &&
26 make install
27 }
29 genpkg_rules() {
30 case $PACKAGE in
31 gconf)
32 copy @std
33 DEPENDS="dbus dbus-glib glib libxml2 orbit2"
34 ;;
35 *-dev)
36 copy @dev
37 DEPENDS="gconf glib-dev orbit2-dev"
38 ;;
39 esac
40 }