2012-12-19 19:42:12 -06:00
|
|
|
# Description: An OpenType text shaping engine
|
2017-03-14 13:57:39 +11:00
|
|
|
# URL: https://www.freedesktop.org/wiki/Software/HarfBuzz
|
2013-02-02 01:54:23 +11:00
|
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
2019-08-27 21:48:19 +10:00
|
|
|
# Depends on: cairo-32 harfbuzz
|
2012-12-19 19:42:12 -06:00
|
|
|
|
|
|
|
name=harfbuzz-32
|
2020-09-12 14:55:50 +10:00
|
|
|
version=2.7.2
|
2013-06-05 12:38:06 +10:00
|
|
|
release=1
|
2020-07-26 19:38:36 +10:00
|
|
|
source=(https://github.com/harfbuzz/harfbuzz/archive/$version/${name%-*}-$version.tar.gz)
|
2012-12-19 19:42:12 -06:00
|
|
|
|
|
|
|
build() {
|
2017-03-14 13:57:39 +11:00
|
|
|
cd ${name%-*}-$version
|
2013-03-26 02:09:37 +11:00
|
|
|
|
2020-07-26 19:38:36 +10:00
|
|
|
echo "EXTRA_DIST = " > gtk-doc.make
|
|
|
|
autoreconf --force --install
|
2013-03-26 02:09:37 +11:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2013-06-05 12:38:06 +10:00
|
|
|
--libdir=/usr/lib32 \
|
|
|
|
--with-glib \
|
|
|
|
--with-freetype \
|
|
|
|
--with-cairo \
|
2019-07-15 21:39:05 +10:00
|
|
|
--with-icu=no \
|
2019-07-16 08:53:07 +10:00
|
|
|
--without-graphite2
|
2013-06-05 12:38:06 +10:00
|
|
|
|
2012-12-19 19:42:12 -06:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2013-06-05 12:38:06 +10:00
|
|
|
|
2020-07-26 19:38:36 +10:00
|
|
|
rm -r $PKG/usr/{bin,include}
|
2012-12-19 19:42:12 -06:00
|
|
|
}
|