aboutsummaryrefslogtreecommitdiffstats
path: root/main/dconf/APKBUILD
blob: 1583e9edb9d930936729df7197776bdded2b2b67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=dconf
pkgver=0.16.0
pkgrel=0
pkgdesc="A low-level configuration system."
url="http://live.gnome.org/dconf"
arch="all"
license="LGPL2.1"
depends=""
makedepends="vala gobject-introspection-dev gtk+3.0-dev glib-dev libxml2-dev
	dbus-dev libxslt docbook-xsl"
install=
subpackages="$pkgname-editor $pkgname-lang"
source="http://download.gnome.org/sources/dconf/${pkgver%.*}/dconf-$pkgver.tar.xz
	"

#	0001-Avoid-posix_fallocate-so-it-works-on-uClibc.patch
_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch)
			patch -p1 -i "$srcdir/$i" || return 1
			;;
		esac
	done
}

build () 
{ 
	cd "$_builddir"
	./configure --prefix=/usr \
		--libexecdir=/usr/lib/dconf
	make V=1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install || return 1
}

editor() {
	pkgdesc="Configuration editor for dconf"
	mkdir -p "$subpkgdir"/usr/bin \
		"$subpkgdir"/usr/share/applications \
		|| return 1
	mv "$pkgdir"/usr/bin/dconf-editor "$subpkgdir"/usr/bin/ || return 1
	mv "$pkgdir"/usr/share/dconf-editor "$subpkgdir"/usr/share/ || return 1
	mv "$pkgdir"/usr/share/applications/dconf-editor.desktop \
		"$subpkgdir"/usr/share/applications/  || return 1
}
md5sums="a266b3f75edabaf15ffcbe9e21130f7e  dconf-0.16.0.tar.xz"
sha256sums="192d682b8e160e22506f3fac6847444013c7cdbef188d937a6ae2b357f9134bb  dconf-0.16.0.tar.xz"
sha512sums="ff74940121833021425cbfd4e1679a48eeabdc532c4890c25e4abfe679b38a320a8ba9e5aef8fa8a04cf043de840ac61760d1bdcb3ce2bd1a96144f4b083a351  dconf-0.16.0.tar.xz"