wok-next view gconf/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents ede906abe532
children e19ff076dc63
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 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 }