summaryrefslogtreecommitdiffstats
path: root/testing/glib/APKBUILD
blob: 8349cb5137eaa789e52c98594d32c5d8b0c562db (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
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=glib
pkgver=2.32.1
pkgrel=0
pkgdesc="Common C routines used by Gtk+ and other libs"
url="http://www.gtk.org"
arch="all"
license='GPL'
depends=
triggers="$pkgname.trigger=/usr/share/glib-2.0/schemas:/usr/lib/gio/modules"
depends_dev="perl gettext-dev libiconv-dev zlib-dev bzip2-dev libffi-dev"
makedepends="$depends_dev"
source="http://ftp.gnome.org/pub/gnome/sources/glib/${pkgver%.*}/glib-$pkgver.tar.xz"
subpackages="$pkgname-doc $pkgname-dev $pkgname-lang"


_builddir="$srcdir/$pkgname-$pkgver"

prepare() {
	cd "$_builddir"
	# busybox env does not handle the -w after perl. we remove it for now
	sed -i -e '1,1s/ -w//' gobject/glib-mkenums.in
}

build() {
	cd "$_builddir"
	./configure --prefix=/usr \
		--mandir=/usr/share/man
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir/" install
	rm "$pkgdir"/usr/lib/*.la
}

# move the stuff in /usr/bin to the glib-dev package
dev() {
	default_dev
	mkdir -p "$subpkgdir"/usr/bin/
	cd "$pkgdir"/usr/bin
	mv glib-genmarshal glib-gettextize glib-mkenums gobject-query \
		gtester gtester-report \
		"$subpkgdir"/usr/bin/
}

md5sums="032c7cf9868c9aa186b490b155a41144  glib-2.32.1.tar.xz"