new packages: esound, flatbuffers, fstrcmp, goom, libaacs, shairplay, waylandpp

This commit is contained in:
suvari
2023-08-27 11:57:05 +03:00
parent 945b747989
commit 1e486729cf
30 changed files with 3431 additions and 1322 deletions
+23
View File
@@ -0,0 +1,23 @@
#!/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 get
def setup():
cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib ")
def build():
cmaketools.make()
def install():
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("LICENSE", "README.md")
+73
View File
@@ -0,0 +1,73 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>waylandpp</Name>
<Homepage>https://github.com/NilsBrause/waylandpp</Homepage>
<Packager>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Packager>
<License>'MIT' 'GPL3'</License>
<IsA>app</IsA>
<Icon>waylandpp</Icon>
<Summary>Wayland C++ bindings</Summary>
<Description>The goal of this library is to create such a C++ binding for Wayland using the most modern C++ technology currently available, providing an easy to use C++ API to Wayland.</Description>
<Archive sha1sum="97962c684b07e0cedcef0e46055a639f8a4b4135" type="targz">https://github.com/NilsBrause/waylandpp/archive/refs/tags/1.0.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>doxygen</Dependency>
<Dependency>wayland-devel</Dependency>
<Dependency>pugixml-devel</Dependency>
<Dependency>libglvnd-devel</Dependency>
<Dependency>wayland-client</Dependency>
<Dependency>wayland-cursor</Dependency>
<Dependency>wayland-server</Dependency>
<Dependency>egl-wayland-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>waylandpp</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
<Dependency>pugixml</Dependency>
<Dependency>wayland</Dependency>
<Dependency>wayland-client</Dependency>
<Dependency>wayland-cursor</Dependency>
<Dependency>wayland-server</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share/waylandpp</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="library">/usr/lib/libwayland*</Path>
</Files>
</Package>
<Package>
<Name>waylandpp-devel</Name>
<Summary>Development files for waylandpp</Summary>
<RuntimeDependencies>
<Dependency>wayland-devel</Dependency>
<Dependency>libglvnd-devel</Dependency>
<Dependency release="current">waylandpp</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/cmake</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2023-08-26</Date>
<Version>1.0.0</Version>
<Comment>First release</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
</History>
</PISI>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>waylandpp</Name>
<Summary xml:lang="tr">Wayland C++ bağlamaları</Summary>
<Description xml:lang="tr">Bu kitaplığın amacı, şu anda mevcut olan en modern C++ teknolojisini kullanarak Wayland için böyle bir C++ bağlaması oluşturmak ve Wayland'a kullanımı kolay bir C++ API'si sağlamaktır.</Description>
</Source>
</PISI>