diff --git a/desktop/font/freetype/actions.py b/desktop/font/freetype/actions.py
index de55af4e..95a40c12 100644
--- a/desktop/font/freetype/actions.py
+++ b/desktop/font/freetype/actions.py
@@ -10,10 +10,18 @@ from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
- autotools.configure("--disable-static \
- --with-harfbuzz=no \
- --without-brotli \
- --enable-freetype-config")
+ options = "--disable-static \
+ --with-harfbuzz=no \
+ --enable-freetype-config \
+ "
+
+ if get.buildTYPE() == "emul32":
+ options += " --libdir=/usr/lib32 \
+ "
+
+ else:
+ options += " --with-brotli=yes \
+ "
def build():
autotools.make()
@@ -22,4 +30,7 @@ def build():
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+ if get.buildTYPE() == "emul32":
+ return
+
pisitools.dodoc("ChangeLog", "README")
diff --git a/desktop/font/freetype/pspec.xml b/desktop/font/freetype/pspec.xml
index e6fef606..9e4b6277 100644
--- a/desktop/font/freetype/pspec.xml
+++ b/desktop/font/freetype/pspec.xml
@@ -19,6 +19,8 @@
bzip2
zlib-devel
libpng-devel
+
+ brotli-devel
arch/0001-Enable-table-validation-modules.patch
@@ -32,6 +34,7 @@
zlib
bzip2
+ brotli
libpng
@@ -78,6 +81,13 @@
+
+ 2023-10-23
+ 2.13.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2023-09-04
2.13.2