blob: 6742044c446db9be00273b9ddb14d1f4d39d4c70 (
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=1.8.4
8 release=1
9 source=(https://www.freedesktop.org/software/${name%-*}/release/${name%-*}-$version.tar.bz2)
10
11 build() {
12 cd ${name%-*}-$version
13
14 sed -i s/"SUBDIRS = api shaping"/"SUBDIRS = shaping"/g test/Makefile.in
15
16 ./configure \
17 --prefix=/usr \
18 --libdir=/usr/lib32 \
19 --with-glib \
20 --with-freetype \
21 --with-cairo \
22 --with-icu=no
23
24 make
25 make DESTDIR=$PKG install
26
27 rm -r $PKG/usr/{bin,include,share}
28 }
|