mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 15:47:15 +08:00
25 lines
877 B
Bash
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
|
|
}
|