user/gconf: new aport
This commit is contained in:
parent
821cbb0b71
commit
e241c4eefd
1 changed files with 42 additions and 0 deletions
42
user/gconf/APKBUILD
Normal file
42
user/gconf/APKBUILD
Normal file
|
@ -0,0 +1,42 @@
|
|||
# Maintainer: Antoine Martin (ayakael) <dev@ayakael.net>
|
||||
# Contributor: Antoine Martin (ayakael) <dev@ayakael.net>
|
||||
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
||||
# Contributor: Leo <thinkabit.ukim@gmail.com>
|
||||
pkgname=gconf
|
||||
pkgver=3.2.6
|
||||
pkgrel=5
|
||||
pkgdesc="GNOME configuration system"
|
||||
url="http://projects.gnome.org/gconf"
|
||||
arch="all"
|
||||
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"
|
||||
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
|
||||
source="https://download.gnome.org/sources/GConf/${pkgver%.*}/GConf-${pkgver}.tar.xz"
|
||||
|
||||
builddir="$srcdir"/GConf-"$pkgver"
|
||||
|
||||
build() {
|
||||
cd "$builddir"
|
||||
./configure \
|
||||
--build=$CBUILD \
|
||||
--host=$CHOST \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--disable-static \
|
||||
--disable-orbit \
|
||||
--enable-gsettings-backend
|
||||
make
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "$builddir"
|
||||
make check
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$builddir"
|
||||
make DESTDIR="$pkgdir" install
|
||||
}
|
||||
|
||||
sha512sums="35f5f659f9d03f7531a7102adacbda0eb310d8a55a831c768c91a82e07dae21247726e00e0e411f63b1de9ade0f042ded572a3ea4a4b2ad3135231f344540b58 GConf-3.2.6.tar.xz"
|
Loading…
Reference in a new issue