29 lines
656 B
Plaintext
Raw Normal View History

# Description: An OpenType text shaping engine
2017-03-14 13:57:39 +11:00
# URL: https://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
2018-07-16 21:36:02 +10:00
version=1.8.3
release=1
2017-03-14 13:57:39 +11:00
source=(https://www.freedesktop.org/software/${name%-*}/release/${name%-*}-$version.tar.bz2)
build() {
2017-03-14 13:57:39 +11:00
cd ${name%-*}-$version
2013-03-26 02:09:37 +11:00
sed -i s/"SUBDIRS = api shaping"/"SUBDIRS = shaping"/g test/Makefile.in
2013-03-26 02:09:37 +11:00
./configure \
--prefix=/usr \
--libdir=/usr/lib32 \
--with-glib \
--with-freetype \
--with-cairo \
--with-icu=no
make
make DESTDIR=$PKG install
2013-09-21 10:33:57 +10:00
rm -r $PKG/usr/{bin,include,share}
}