summaryrefslogtreecommitdiffstats
path: root/main/libbonobo/APKBUILD
blob: 1349a9ce049c1d9b91ea096216aa7b86039880dc (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
# Contributor: William Pitcock <nenolod@dereferenced.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libbonobo
pkgver=2.32.1
pkgrel=4
pkgdesc="GNOME base library"
url="http://www.gnome.org/"
arch="all"
license="LGPL"
depends=
depends_dev="gtk+-dev libidl-dev orbit2-dev popt-dev libxml2-dev"
makedepends="$depends_dev flex bison"
install=
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
source="http://ftp.acc.umu.se/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2"

_builddir="${srcdir}/${pkgname}-${pkgver}"
prepare() {
	local i
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
	# don't waste time building tests or samples
	sed -e 's/tests//' \
		-e 's/samples//' \
		-i Makefile.am Makefile.in || return 1
}

build() {
	cd "$_builddir"
	./configure --prefix=/usr \
		--sysconfdir=/etc \
		--disable-scrollkeeper
	make || return 1
}

package() {
	cd "$_builddir"

	make DESTDIR="$pkgdir" install || return 1
	find "$pkgdir" -name '*.la' -delete
}

md5sums="27fa902d4fdf6762ee010e7053aaf77b  libbonobo-2.32.1.tar.bz2"