wayland-1.20.0

This commit is contained in:
Rmys
2021-12-11 18:00:45 +03:00
committed by GitHub
parent 52f313d6ad
commit c826c2a564
2 changed files with 20 additions and 9 deletions
+11 -8
View File
@@ -8,25 +8,28 @@
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import mesontools
from pisi.actionsapi import get
Libdir = "/usr/lib32" if get.buildTYPE() == "emul32" else "/usr/lib"
bindir = "/usr/bin32" if get.buildTYPE() == "emul32" else "/usr/bin"
def setup():
autotools.autoreconf("-vif")
autotools.configure("--disable-documentation \
--libdir=%s \
--bindir=%s \
--disable-static" % (Libdir, bindir))
options = "-Ddocumentation=false \
--libdir=%s \
--bindir=%s \
" % (Libdir, bindir)
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
if get.buildTYPE() == "emul32":
options += " -Ddocumentation=false \
"
mesontools.configure(options)
def build():
autotools.make()
mesontools.build()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
mesontools.install()
if get.buildTYPE() == "emul32":
pisitools.removeDir("/usr/bin32")
+9 -1
View File
@@ -12,9 +12,10 @@
<IsA>library</IsA>
<Summary>Wayland Compositor Infrastructure</Summary>
<Description>Wayland is a protocol for a compositor to talk to its clients as well as a C library implementation of that protocol.</Description>
<Archive sha1sum="9ae0a89cfe6798250b19c72a987bda734d269060" type="tarxz">https://wayland.freedesktop.org/releases/wayland-1.19.0.tar.xz</Archive>
<Archive sha1sum="6e3352cb44f9f405926e39f88cd890e51b0304b8" type="tarxz">https://wayland.freedesktop.org/releases/wayland-1.20.0.tar.xz</Archive>
<BuildDependencies>
<Dependency>xmlto</Dependency>
<Dependency>meson</Dependency>
<Dependency>docbook-xsl</Dependency>
<Dependency>libffi-devel</Dependency>
<Dependency>expat-devel</Dependency>
@@ -114,6 +115,13 @@
</Package>
<History>
<Update release="12">
<Date>2021-12-11</Date>
<Version>1.20.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="11">
<Date>2021-04-27</Date>
<Version>1.19.0</Version>