24 lines
540 B
Plaintext
24 lines
540 B
Plaintext
# Description: A library for layout and rendering of text
|
|
# URL: http://www.gtk.org/
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: fribidi-32 harfbuzz-32 xorg-libsm-32 xorg-libxft-32 pango
|
|
|
|
name=pango-32
|
|
version=1.42.0
|
|
release=1
|
|
source=(https://download.gnome.org/sources/pango/${version:0:4}/${name%-*}-$version.tar.xz)
|
|
|
|
build() {
|
|
cd ${name%-*}-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32 \
|
|
--program-suffix=-32
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{include,share}
|
|
}
|