core/pango/PKGBUILD
Jan Mette 7af1af010c
2010-04-06 19:23:26 +00:00

25 lines
877 B
Bash

# $Id: PKGBUILD 74428 2010-03-30 22:41:01Z ibiru $
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgname=pango
pkgver=1.28.0
pkgrel=1
pkgdesc="A library for layout and rendering of text"
arch=('i686' 'x86_64')
license=('LGPL')
depends=('glib2>=2.24' 'cairo>=1.8.10' 'libxft>=2.1.13' 'libthai>=0.1.12' 'freetype2>=2.3.12')
makedepends=('pkgconfig' 'libxt' 'gobject-introspection')
options=('!libtool' '!emptydirs')
install=pango.install
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.28/${pkgname}-${pkgver}.tar.bz2)
url="http://www.pango.org/"
sha256sums=('68480485b714e3570a58c270add9e9785fa78068f7410949b478e8a9d3f5bc40')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --with-included-modules=basic-fc || return 1
make || return 1
make DESTDIR="${pkgdir}" install || return 1
}