aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2019-04-28 16:46:15 -0300
committerNatanael Copa <ncopa@alpinelinux.org>2019-04-30 10:02:59 +0000
commit317c2da5d0e9d7549031cd58d592334b83d097cf (patch)
tree2faffc0470f5e8f8d117a7bf897e76d6239463a0
parent1f68b7fa5d04c1303bdd19c376f34acd4590dcc3 (diff)
main/gconf: modernize
- Fix license - Disable obsolete orbit support - enable gsettings - disable static library
-rw-r--r--main/gconf/APKBUILD15
1 files changed, 8 insertions, 7 deletions
diff --git a/main/gconf/APKBUILD b/main/gconf/APKBUILD
index f7a179923f8..8ca3b5c1092 100644
--- a/main/gconf/APKBUILD
+++ b/main/gconf/APKBUILD
@@ -1,16 +1,14 @@
-# Contributor:
+# Contributor: Leo <thinkabit.ukim@gmail.com>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=gconf
pkgver=3.2.6
-pkgrel=4
+pkgrel=5
pkgdesc="GNOME configuration system"
url="http://projects.gnome.org/gconf"
arch="all"
-license="GPL-2.0+"
-depends=
-depends_dev="libxml2-dev gtk+3.0-dev polkit-dev orbit2-dev"
+license="GPL-2.0-or-later"
+depends_dev="libxml2-dev gtk+3.0-dev polkit-dev"
makedepends="$depends_dev gobject-introspection-dev glib-dev intltool"
-install=""
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
source="https://download.gnome.org/sources/GConf/${pkgver%.*}/GConf-${pkgver}.tar.xz"
@@ -22,7 +20,10 @@ build() {
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
- --sysconfdir=/etc
+ --sysconfdir=/etc \
+ --disable-static \
+ --disable-orbit \
+ --enable-gsettings-backend
make
}