freetype rebuild

This commit is contained in:
Rmys
2023-10-23 22:14:42 +03:00
committed by GitHub
parent c2cdec64ae
commit 28545abf2a
2 changed files with 25 additions and 4 deletions
+15 -4
View File
@@ -10,10 +10,18 @@ from pisi.actionsapi import shelltools
from pisi.actionsapi import get from pisi.actionsapi import get
def setup(): def setup():
autotools.configure("--disable-static \ options = "--disable-static \
--with-harfbuzz=no \ --with-harfbuzz=no \
--without-brotli \ --enable-freetype-config \
--enable-freetype-config") "
if get.buildTYPE() == "emul32":
options += " --libdir=/usr/lib32 \
"
else:
options += " --with-brotli=yes \
"
def build(): def build():
autotools.make() autotools.make()
@@ -22,4 +30,7 @@ def build():
def install(): def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) autotools.rawInstall("DESTDIR=%s" % get.installDIR())
if get.buildTYPE() == "emul32":
return
pisitools.dodoc("ChangeLog", "README") pisitools.dodoc("ChangeLog", "README")
+10
View File
@@ -19,6 +19,8 @@
<Dependency>bzip2</Dependency> <Dependency>bzip2</Dependency>
<Dependency>zlib-devel</Dependency> <Dependency>zlib-devel</Dependency>
<Dependency>libpng-devel</Dependency> <Dependency>libpng-devel</Dependency>
<!--blender-->
<Dependency>brotli-devel</Dependency>
</BuildDependencies> </BuildDependencies>
<Patches> <Patches>
<Patch level="1">arch/0001-Enable-table-validation-modules.patch</Patch> <Patch level="1">arch/0001-Enable-table-validation-modules.patch</Patch>
@@ -32,6 +34,7 @@
<RuntimeDependencies> <RuntimeDependencies>
<Dependency>zlib</Dependency> <Dependency>zlib</Dependency>
<Dependency>bzip2</Dependency> <Dependency>bzip2</Dependency>
<Dependency>brotli</Dependency>
<Dependency>libpng</Dependency> <Dependency>libpng</Dependency>
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
@@ -78,6 +81,13 @@
</Package> </Package>
<History> <History>
<Update release="16">
<Date>2023-10-23</Date>
<Version>2.13.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="15"> <Update release="15">
<Date>2023-09-04</Date> <Date>2023-09-04</Date>
<Version>2.13.2</Version> <Version>2.13.2</Version>