blob: ab1f03c2101d341290b7aa6152a94df5263480e6 (
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
|
# $Id$
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgname=pango
pkgver=1.38.1
pkgrel=1
pkgdesc="A library for layout and rendering of text"
arch=('i686' 'x86_64')
license=('LGPL')
depends=('libthai' 'cairo' 'libxft' 'harfbuzz')
makedepends=('harfbuzz' 'fontconfig' 'cairo' 'libxft' 'libthai' 'gobject-introspection' 'help2man')
checkdepends=('ttf-dejavu')
install=pango.install
source=(http://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
url="http://www.pango.org/"
sha256sums=('1320569f6c6d75d6b66172b2d28e59c56ee864ee9df202b76799c4506a214eb7')
prepare() {
cd ${pkgname}-${pkgver}
}
build() {
cd ${pkgname}-${pkgver}
rm -f pango-view/pango-view.1.in
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --with-included-modules=basic-fc
make
}
check() {
cd ${pkgname}-${pkgver}
make -k check || :
}
package() {
cd ${pkgname}-${pkgver}
make -j1 DESTDIR="${pkgdir}" install
}
|