core/pango/PKGBUILD

25 lines
877 B
Bash
Raw Normal View History

2010-04-07 03:23:26 +08:00
# $Id: PKGBUILD 74428 2010-03-30 22:41:01Z ibiru $
2010-03-14 23:48:48 +08:00
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgname=pango
2010-04-07 03:23:26 +08:00
pkgver=1.28.0
2010-03-14 23:48:48 +08:00
pkgrel=1
pkgdesc="A library for layout and rendering of text"
arch=('i686' 'x86_64')
license=('LGPL')
2010-04-07 03:23:26 +08:00
depends=('glib2>=2.24' 'cairo>=1.8.10' 'libxft>=2.1.13' 'libthai>=0.1.12' 'freetype2>=2.3.12')
2010-03-14 23:48:48 +08:00
makedepends=('pkgconfig' 'libxt' 'gobject-introspection')
options=('!libtool' '!emptydirs')
install=pango.install
2010-04-07 03:23:26 +08:00
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.28/${pkgname}-${pkgver}.tar.bz2)
2010-03-14 23:48:48 +08:00
url="http://www.pango.org/"
2010-04-07 03:23:26 +08:00
sha256sums=('68480485b714e3570a58c270add9e9785fa78068f7410949b478e8a9d3f5bc40')
2010-03-14 23:48:48 +08:00
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
}