lib32/lib32-pango/PKGBUILD

49 lines
1.5 KiB
Bash
Raw Normal View History

2011-01-16 18:49:00 +08:00
# Lib32 Packages for Chakra, part of chakra-project.org
_pkgbasename=pango
2013-10-23 15:56:10 +08:00
pkgname=lib32-${_pkgbasename}
2015-02-16 22:39:47 +08:00
pkgver=1.36.8
pkgrel=1
2011-01-16 18:49:00 +08:00
pkgdesc="A library for layout and rendering of text (32-bit)"
arch=('x86_64')
license=('LGPL')
2014-06-09 03:16:20 +08:00
depends=('lib32-glib2' 'lib32-cairo' 'lib32-libxft' 'lib32-harfbuzz' "${_pkgbasename}=${pkgver}")
makedepends=('gcc-multilib')
2014-02-14 04:35:39 +08:00
options=('!emptydirs')
2011-01-16 18:49:00 +08:00
install=pango.install
2013-10-23 15:56:10 +08:00
source=("http://ftp.gnome.org/pub/gnome/sources/${_pkgbasename}/${pkgver%.*}/${_pkgbasename}-${pkgver}.tar.xz")
2011-01-16 18:49:00 +08:00
url="http://www.pango.org/"
2015-02-16 22:39:47 +08:00
sha256sums=('18dbb51b8ae12bae0ab7a958e7cf3317c9acfc8a1e1103ec2f147164a0fc2d07')
2013-08-16 04:03:29 +08:00
prepare() {
cd "${srcdir}/${_pkgbasename}-${pkgver}"
sed -i 's#"pango.modules"#"pango.modules-32"#' pango/modules.c
}
2011-01-16 18:49:00 +08:00
build() {
export CC="gcc -m32"
export CXX="g++ -m32"
export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
2013-10-23 15:56:10 +08:00
cd ${_pkgbasename}-${pkgver}
2013-02-28 04:11:07 +08:00
2013-08-16 04:03:29 +08:00
./configure --prefix=/usr \
--libdir=/usr/lib32 \
--sysconfdir=/etc \
--localstatedir=/var \
--with-included-modules=basic-fc \
--with-dynamic-modules=arabic-fc,arabic-lang,basic-fc,basic-win32,basic-x,basic-atsui,hangul-fc,hebrew-fc,indic-fc,indic-lang,khmer-fc,syriac-fc,tibetan-fc \
--disable-introspection
2011-01-16 18:49:00 +08:00
make
}
package() {
2013-10-23 15:56:10 +08:00
cd ${_pkgbasename}-${pkgver}
2011-01-16 18:49:00 +08:00
make DESTDIR="${pkgdir}" install
2013-10-23 15:56:10 +08:00
rm -rf "${pkgdir}"/etc
rm -rf "${pkgdir}"/usr/{bin/pango-view,share,include}
mv "${pkgdir}"/usr/bin/pango-querymodules "${pkgdir}"/usr/bin/pango-querymodules-32
2011-01-16 18:49:00 +08:00
}
2013-08-16 04:03:29 +08:00