2010-10-09 08:34:49 +08:00
|
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
2010-03-14 23:48:48 +08:00
|
|
|
|
|
|
|
pkgname=pango
|
2014-06-08 22:55:29 +08:00
|
|
|
pkgver=1.36.3
|
2014-07-06 05:03:30 +08:00
|
|
|
pkgrel=2
|
2010-03-14 23:48:48 +08:00
|
|
|
pkgdesc="A library for layout and rendering of text"
|
2012-11-08 03:34:31 +08:00
|
|
|
arch=('x86_64')
|
2010-03-14 23:48:48 +08:00
|
|
|
license=('LGPL')
|
2012-11-01 07:08:10 +08:00
|
|
|
depends=('cairo' 'libxft' 'libthai' 'harfbuzz')
|
|
|
|
makedepends=('gobject-introspection' 'libxt' 'fontconfig')
|
2010-03-14 23:48:48 +08:00
|
|
|
install=pango.install
|
2013-07-28 00:51:03 +08:00
|
|
|
source=("http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
|
2010-03-14 23:48:48 +08:00
|
|
|
url="http://www.pango.org/"
|
2014-06-08 22:55:29 +08:00
|
|
|
sha256sums=('ad48e32917f94aa9d507486d44366e59355fcfd46ef86d119ddcba566ada5d22')
|
2010-03-14 23:48:48 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
2011-09-25 06:04:42 +08:00
|
|
|
|
2013-07-28 00:51:03 +08:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--localstatedir=/var \
|
|
|
|
--with-included-modules=basic-fc
|
2010-10-09 08:34:49 +08:00
|
|
|
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
|
2013-10-22 05:40:23 +08:00
|
|
|
install -m755 -d "${pkgdir}/etc/pango"
|
2010-03-14 23:48:48 +08:00
|
|
|
}
|