blob: 7695bcdd133f51ed53ae3bb4a20311385b11642b (
plain)
1 # Description: An OpenType text shaping engine
2 # URL: http://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=0.9.41
8 release=1
9 source=(http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-$version.tar.bz2)
10
11 build() {
12 cd harfbuzz-$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
25 make
26 make DESTDIR=$PKG install
27
28 rm -r $PKG/usr/{bin,include,share}
29 }
|