# 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"