mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
24 lines
779 B
Bash
24 lines
779 B
Bash
# $Id: PKGBUILD 38663 2009-05-09 23:37:50Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=pango
|
|
pkgver=1.24.2
|
|
pkgrel=1
|
|
pkgdesc="A library for layout and rendering of text"
|
|
arch=(arm)
|
|
license=('LGPL')
|
|
depends=('glib2>=2.20.1' 'cairo>=1.8.6' 'libxft>=2.1.13' 'libthai>=0.1.11' 'freetype2>=2.3.9')
|
|
makedepends=('pkgconfig' 'libxt')
|
|
options=('!libtool' '!emptydirs')
|
|
install=pango.install
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.24/${pkgname}-${pkgver}.tar.bz2)
|
|
url="http://www.pango.org/"
|
|
md5sums=('7bc6c884d847cabc613e4c6d663771f5')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--localstatedir=/var || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|