core/pango/PKGBUILD
Samir 348d542db8 libpng group: update/rebuild platform
will commit them separately next time... it's just too much work to do separate commits right now
2013-07-27 16:51:03 +00:00

32 lines
847 B
Bash

# Platform Packages for Chakra, part of chakra-project.org
pkgname=pango
pkgver=1.35.0
pkgrel=1
pkgdesc="A library for layout and rendering of text"
arch=('x86_64')
license=('LGPL')
depends=('cairo' 'libxft' 'libthai' 'harfbuzz')
makedepends=('gobject-introspection' 'libxt' 'fontconfig')
options=('!libtool')
install=pango.install
source=("http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
url="http://www.pango.org/"
sha256sums=('c21f7277b5c088f334748b38f2c3abd6399024d653ab7663f567234acbdc7f92')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--with-included-modules=basic-fc
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
#install -m755 -d "${pkgdir}/etc/pango"
}