forked from ports/compat-32
30 lines
650 B
Plaintext
30 lines
650 B
Plaintext
# Description: An OpenType text shaping engine
|
|
# URL: http://www.freedesktop.org/wiki/Software/HarfBuzz
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: cairo-32 harfbuzz
|
|
|
|
name=harfbuzz-32
|
|
version=0.9.23
|
|
release=1
|
|
source=(http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd harfbuzz-$version
|
|
|
|
sed -i s/"SUBDIRS = api shaping"/"SUBDIRS = shaping"/g test/Makefile.in
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32 \
|
|
--with-glib \
|
|
--with-freetype \
|
|
--with-cairo \
|
|
--with-icu=no
|
|
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{bin,include,share}
|
|
}
|