compat-32/harfbuzz-32/Pkgfile

30 lines
682 B
Plaintext
Raw Normal View History

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