2010-10-09 08:34:49 +08:00
|
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
2012-04-20 08:29:43 +08:00
|
|
|
# maintainer abveritas@chakra-project.org
|
2010-03-14 23:48:48 +08:00
|
|
|
|
|
|
|
pkgname=pango
|
2012-04-20 08:29:43 +08:00
|
|
|
pkgver=1.30.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')
|
2011-09-25 06:04:42 +08:00
|
|
|
depends=('glib2' 'cairo' 'libxft' 'libthai' 'freetype2')
|
|
|
|
makedepends=('gobject-introspection' 'libxt')
|
2010-03-14 23:48:48 +08:00
|
|
|
options=('!libtool' '!emptydirs')
|
|
|
|
install=pango.install
|
2012-04-20 08:29:43 +08:00
|
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.30/${pkgname}-${pkgver}.tar.xz)
|
2010-03-14 23:48:48 +08:00
|
|
|
url="http://www.pango.org/"
|
2012-04-20 08:29:43 +08:00
|
|
|
sha256sums=('7c6d2ab024affaed0e942f9279b818235f9c6a36d9fc50688f48d387f4102dff')
|
2010-03-14 23:48:48 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
2011-09-25 06:04:42 +08:00
|
|
|
|
2010-03-14 23:48:48 +08:00
|
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
2010-10-09 08:34:49 +08:00
|
|
|
--localstatedir=/var --with-included-modules=basic-fc
|
|
|
|
make
|
2011-09-25 06:04:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
2010-10-09 08:34:49 +08:00
|
|
|
make DESTDIR="${pkgdir}" install
|
2010-03-14 23:48:48 +08:00
|
|
|
}
|