core/pango/PKGBUILD

30 lines
796 B
Bash
Raw Normal View History

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
pkgver=1.32.5
2013-05-23 03:02:53 +08:00
pkgrel=3
2010-03-14 23:48:48 +08:00
pkgdesc="A library for layout and rendering of text"
arch=('x86_64')
2010-03-14 23:48:48 +08:00
license=('LGPL')
depends=('cairo' 'libxft' 'libthai' 'harfbuzz')
makedepends=('gobject-introspection' 'libxt' 'fontconfig')
2013-05-23 03:02:53 +08:00
options=('!libtool')
2010-03-14 23:48:48 +08:00
install=pango.install
source=("http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.32/${pkgname}-${pkgver}.tar.xz")
2010-03-14 23:48:48 +08:00
url="http://www.pango.org/"
md5sums=('8e846804d6e219bc795a26a4a39b5bfd')
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
2013-05-21 04:50:15 +08:00
install -m755 -d "${pkgdir}/etc/pango"
2010-03-14 23:48:48 +08:00
}