vulkan-utility-libraries mew package
This commit is contained in:
+417486
-415662
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
bcdcebef040bc743080a93106c8247d3651764e8
|
||||
991f18dd80e8b2b818ad323f17091fd984559324
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
56202b4d89ce71a4702ba8533b0121083fb2ac5c
|
||||
7c0788b4a0680f87ef37edc8990487d602a7852e
|
||||
@@ -0,0 +1,40 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.makedirs("build")
|
||||
shelltools.cd("build")
|
||||
options = "-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_INSTALL_SYSCONFDIR=/etc \
|
||||
-DCMAKE_INSTALL_DATADIR=/usr/share \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
"
|
||||
|
||||
if get.buildTYPE() == "_emul32":
|
||||
shelltools.export("ASFLAGS", "--32")
|
||||
shelltools.export("CFLAGS", "-m32")
|
||||
shelltools.export("CXXFLAGS", "-m32")
|
||||
shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
|
||||
options += " -DCMAKE_INSTALL_LIBDIR=lib32 \
|
||||
"
|
||||
|
||||
cmaketools.configure(options, sourceDir="..")
|
||||
|
||||
def build():
|
||||
shelltools.cd("build")
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
shelltools.cd("build")
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
shelltools.cd("..")
|
||||
pisitools.dodoc("LICENSE.md", "README*")
|
||||
@@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>vulkan-utility-libraries</Name>
|
||||
<Homepage>https://github.com/KhronosGroup/Vulkan-Utility-Libraries</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>Apache</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Vulkan Utility Libraries</Summary>
|
||||
<Icon>vulkan</Icon>
|
||||
<Description>Vulkan Utility Libraries</Description>
|
||||
<Archive sha1sum="22778fcd393bec6e19f52ebe2682be00e5a17315" type="targz" name="Vulkan-Utility-Libraries-1.3.272.0.tar.gz">https://github.com/KhronosGroup/Vulkan-Utility-Libraries/archive/refs/tags/v1.3.272.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>vulkan-headers</Dependency>
|
||||
</BuildDependencies>
|
||||
<!--
|
||||
<Patches>
|
||||
<Patch>vulkan-utility-libraries.patch</Patch>
|
||||
<Patch level="1">vulkan-utility-libraries.patch</Patch>
|
||||
</Patches>
|
||||
-->
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>vulkan-utility-libraries</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>vulkan-utility-libraries-32bit</Name>
|
||||
<BuildType>_emul32</BuildType>
|
||||
<PartOf>emul32</PartOf>
|
||||
<BuildDependencies>
|
||||
<!-- <Dependency>libX11-32bit</Dependency> -->
|
||||
</BuildDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib32</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>vulkan-utility-libraries-devel</Name>
|
||||
<Summary>Development files for vulkan-utility-libraries</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">vulkan-utility-libraries</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/cmake</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2023-12-08</Date>
|
||||
<Version>1.3.272</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>Vulkan-Utility-Libraries</Name>
|
||||
<Summary xml:lang="tr">Vulkan Utility Libraries</Summary>
|
||||
<Description xml:lang="tr">Vulkan Utility Libraries</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user