mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 17:47:38 +08:00
25 lines
877 B
Bash
25 lines
877 B
Bash
|
# $Id: PKGBUILD 61462 2009-12-16 16:38:06Z ibiru $
|
||
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
||
|
|
||
|
pkgname=pango
|
||
|
pkgver=1.26.2
|
||
|
pkgrel=1
|
||
|
pkgdesc="A library for layout and rendering of text"
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('LGPL')
|
||
|
depends=('glib2>=2.22.2' 'cairo>=1.8.8' 'libxft>=2.1.13' 'libthai>=0.1.12' 'freetype2>=2.3.9')
|
||
|
makedepends=('pkgconfig' 'libxt' 'gobject-introspection')
|
||
|
options=('!libtool' '!emptydirs')
|
||
|
install=pango.install
|
||
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.26/${pkgname}-${pkgver}.tar.bz2)
|
||
|
url="http://www.pango.org/"
|
||
|
sha256sums=('3b85879e5d8794555d10a2b79428071c99a93b7502ccbef50360ae44c77c3e08')
|
||
|
|
||
|
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
|
||
|
}
|