usrsctp-0.9.5.0

This commit is contained in:
uglyside
2025-02-06 23:39:37 +03:00
parent 3b0bf5565b
commit 6148a9423b
2 changed files with 70 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import mesontools, pisitools
def setup():
mesontools.configure("--prefix=/usr --buildtype=release")
def build():
mesontools.build()
def install():
mesontools.install()
pisitools.dodoc("LICENSE.md")
+52
View File
@@ -0,0 +1,52 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>usrsctp</Name>
<Homepage>https://github.com/sctplab/usrsctp</Homepage>
<Packager>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Packager>
<License>BSD-3-Clause</License>
<PartOf>network.misc</PartOf>
<Summary>SCTP user-land implementation.</Summary>
<Description>A portable SCTP userland stack.</Description>
<Archive sha1sum="a71e5ff2276a9fa47edb843cbbb9fb7d138a5f19" type="targz">https://github.com/sctplab/usrsctp/archive/0.9.5.0/usrsctp-0.9.5.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>meson</Dependency>
</BuildDependencies>
<Patches>
<!-- <Patch level="1"></Patch> -->
</Patches>
</Source>
<Package>
<Name>usrsctp</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<Package>
<Name>usrsctp-devel</Name>
<RuntimeDependencies>
<Dependency release="current">usrsctp</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2025-02-06</Date>
<Version>0.9.5.0</Version>
<Comment>First release.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
</History>
</PISI>