harfbuzz ver. bump

This commit is contained in:
Rmys
2021-01-23 23:35:18 +03:00
committed by GitHub
parent 5ead019af3
commit 2520058ca6
2 changed files with 27 additions and 18 deletions
+16 -17
View File
@@ -7,28 +7,27 @@ from pisi.actionsapi import get
from pisi.actionsapi import autotools from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools from pisi.actionsapi import shelltools
from pisi.actionsapi import mesontools
def setup(): def setup():
options = "--with-glib=yes \ options = "-D graphite=enabled \
--with-freetype=yes \ -D docs=disabled \
--with-cairo=yes \ "
--with-icu=yes \
--with-gobject=yes \
--with-graphite2=yes"
if get.buildTYPE() == "emul32": if get.buildTYPE() == "emul32":
options += "--with-glib=yes \ options += " -D graphite=disabled \
--with-graphite2=no \ -D introspection=disabled \
--with-cairo=yes \ "
--with-icu=yes"
autotools.configure(options) mesontools.configure(options)
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build(): def build():
autotools.make() mesontools.build()
def install(): def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) mesontools.install()
if get.buildTYPE() == "_emul32":
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README") return
pisitools.dodoc("AUTHORS", "COPYING", "README*")
+11 -1
View File
@@ -12,8 +12,10 @@
<IsA>library</IsA> <IsA>library</IsA>
<Summary>OpenType text shaping engine.</Summary> <Summary>OpenType text shaping engine.</Summary>
<Description>The Harfbuzz package contains an OpenType text shaping engine.</Description> <Description>The Harfbuzz package contains an OpenType text shaping engine.</Description>
<Archive sha1sum="abaeb9bca4f79edaff708dc124a81f9d34499acd" type="tarxz">https://www.freedesktop.org/software/harfbuzz/release/harfbuzz-2.6.4.tar.xz</Archive> <Archive sha1sum="a87064f4a16dea4b7c95013db5bd2d2039fd81e3" type="targz">https://github.com/harfbuzz/harfbuzz/archive/2.7.4.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<!-- <Dependency>git</Dependency> -->
<Dependency>meson</Dependency>
<Dependency>cairo-devel</Dependency> <Dependency>cairo-devel</Dependency>
<Dependency>glib2-devel</Dependency> <Dependency>glib2-devel</Dependency>
<Dependency>icu4c-devel</Dependency> <Dependency>icu4c-devel</Dependency>
@@ -22,6 +24,7 @@
<Dependency>expat-devel</Dependency> <Dependency>expat-devel</Dependency>
<Dependency>python-six</Dependency> <Dependency>python-six</Dependency>
<Dependency>gtk-doc</Dependency> <Dependency>gtk-doc</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
</BuildDependencies> </BuildDependencies>
</Source> </Source>
@@ -92,6 +95,13 @@
</Package> </Package>
<History> <History>
<Update release="10">
<Date>2021-01-23</Date>
<Version>2.7.4</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="9"> <Update release="9">
<Date>2020-01-14</Date> <Date>2020-01-14</Date>
<Version>2.6.4</Version> <Version>2.6.4</Version>