core/pango/PKGBUILD

31 lines
812 B
Bash
Raw Normal View History

2010-10-09 08:34:49 +08:00
# Platform Packages for Chakra, part of chakra-project.org
#
# maintainer abveritas@chakra-project.org
2010-03-14 23:48:48 +08:00
pkgname=pango
pkgver=1.32.5
pkgrel=1
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')
2010-03-14 23:48:48 +08:00
options=('!libtool' '!emptydirs')
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
2010-03-14 23:48:48 +08:00
}