mirror of
https://gitdl.cn/https://github.com/chakralinux/lib32.git
synced 2025-02-03 10:57:16 +08:00
49 lines
1.5 KiB
Bash
49 lines
1.5 KiB
Bash
# Lib32 Packages for Chakra, part of chakra-project.org
|
|
|
|
_pkgbasename=pango
|
|
pkgname=lib32-${_pkgbasename}
|
|
pkgver=1.36.8
|
|
pkgrel=1
|
|
pkgdesc="A library for layout and rendering of text (32-bit)"
|
|
arch=('x86_64')
|
|
license=('LGPL')
|
|
depends=('lib32-glib2' 'lib32-cairo' 'lib32-libxft' 'lib32-harfbuzz' "${_pkgbasename}=${pkgver}")
|
|
makedepends=('gcc-multilib')
|
|
options=('!emptydirs')
|
|
install=pango.install
|
|
source=("http://ftp.gnome.org/pub/gnome/sources/${_pkgbasename}/${pkgver%.*}/${_pkgbasename}-${pkgver}.tar.xz")
|
|
url="http://www.pango.org/"
|
|
sha256sums=('18dbb51b8ae12bae0ab7a958e7cf3317c9acfc8a1e1103ec2f147164a0fc2d07')
|
|
|
|
prepare() {
|
|
cd "${srcdir}/${_pkgbasename}-${pkgver}"
|
|
|
|
sed -i 's#"pango.modules"#"pango.modules-32"#' pango/modules.c
|
|
}
|
|
|
|
build() {
|
|
export CC="gcc -m32"
|
|
export CXX="g++ -m32"
|
|
export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
|
|
|
|
cd ${_pkgbasename}-${pkgver}
|
|
|
|
./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
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${_pkgbasename}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
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
|
|
}
|
|
|