aboutsummaryrefslogtreecommitdiffstats
path: root/main/pangox-compat/APKBUILD
blob: 7234884fd5a5fb34393e75455c0bc2e8ef591d17 (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
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=pangox-compat
pkgver=0.0.2
pkgrel=0
pkgdesc="Compatibility lib for pangox"
url="http://pango.org"
arch="all"
license="LGPL"
depends=""
depends_dev="pango-dev libice-dev"
makedepends="$depends_dev"
install=""
subpackages="$pkgname-dev"
source="http://ftp.gnome.org/pub/gnome/sources/pangox-compat/${pkgver%.*}/pangox-compat-$pkgver.tar.xz"

_builddir="$srcdir"/pangox-compat-$pkgver
prepare() {
	local i
	cd "$_builddir"
	update_config_sub || return 1
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
}

build() {
	cd "$_builddir"
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--disable-static \
		|| return 1
	make || return 1
}

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

sha512sums="fd3e257157d78c3d86c948e7909226fdebe52408d02a52432de8a295443b64b80b37cb795fe646d581515e6072bd278f2dcab0e43cf27b63b03a82c01eb6b9b3  pangox-compat-0.0.2.tar.xz"