mesa-glu ver. bump

This commit is contained in:
Rmys
2023-07-23 15:25:03 +03:00
parent 178526e3c5
commit 392399103a
2 changed files with 14 additions and 6 deletions
+5 -5
View File
@@ -5,17 +5,17 @@
from pisi.actionsapi import autotools from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools from pisi.actionsapi import pisitools
from pisi.actionsapi import mesontools
from pisi.actionsapi import get from pisi.actionsapi import get
def setup(): def setup():
autotools.autoreconf("-vif") mesontools.configure()
autotools.configure("--disable-static")
def build(): def build():
autotools.make() mesontools.build()
def check(): def check():
autotools.make("check") mesontools.build("test")
def install(): def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) mesontools.install()
+9 -1
View File
@@ -12,8 +12,9 @@
<IsA>library</IsA> <IsA>library</IsA>
<Summary>Mesa OpenGL Utility library</Summary> <Summary>Mesa OpenGL Utility library</Summary>
<Description>Mesa implementation of the standard GLU OpenGL utility API.</Description> <Description>Mesa implementation of the standard GLU OpenGL utility API.</Description>
<Archive sha1sum="86758c10bc1c4434f10f43eccc3d8f82b004332b" type="targz">ftp://ftp.freedesktop.org/pub/mesa/glu/glu-9.0.2.tar.gz</Archive> <Archive sha1sum="974bda7f4cdc6b2742ab7e85b83ba10c47fb8afa" type="tarxz">ftp://ftp.freedesktop.org/pub/mesa/glu/glu-9.0.3.tar.xz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>meson</Dependency>
<Dependency>libglvnd-devel</Dependency> <Dependency>libglvnd-devel</Dependency>
<Dependency>libgcc</Dependency> <Dependency>libgcc</Dependency>
</BuildDependencies> </BuildDependencies>
@@ -65,6 +66,13 @@
</Package> </Package>
<History> <History>
<Update release="10">
<Date>2023-07-23</Date>
<Version>9.0.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="9"> <Update release="9">
<Date>2021-06-25</Date> <Date>2021-06-25</Date>
<Version>9.0.2</Version> <Version>9.0.2</Version>