blob: 4bb0449bd9530e48fc0cd6df300f908fe4c2ef5f (
plain)
1 # Description: An OpenType text shaping engine
2 # URL: https://www.freedesktop.org/wiki/Software/HarfBuzz
3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
4 # Depends on: cairo-32 harfbuzz
5
6 name=harfbuzz-32
7 version=2.7.1
8 release=1
9 source=(https://github.com/harfbuzz/harfbuzz/archive/$version/${name%-*}-$version.tar.gz)
10
11 build() {
12 cd ${name%-*}-$version
13
14 echo "EXTRA_DIST = " > gtk-doc.make
15 autoreconf --force --install
16 ./configure \
17 --prefix=/usr \
18 --libdir=/usr/lib32 \
19 --with-glib \
20 --with-freetype \
21 --with-cairo \
22 --with-icu=no \
23 --without-graphite2
24
25 make
26 make DESTDIR=$PKG install
27
28 rm -r $PKG/usr/{bin,include}
29 }
|