libnice-0.1.22

This commit is contained in:
uglyside
2025-02-06 23:37:29 +03:00
parent b1354c412d
commit 994d4cd728
2 changed files with 29 additions and 20 deletions
+12 -12
View File
@@ -2,23 +2,23 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Licensed under the GNU General Public License, version 3. # Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt # See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools from pisi.actionsapi import mesontools, pisitools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get i = ''.join([
' --prefix=/usr',
' --buildtype=release',
' -Dcrypto-library=gnutls '
])
def setup(): def setup():
autotools.autoreconf("-fi") mesontools.configure(i)
autotools.configure("--disable-static \
--with-gstreamer-0.10=no")
#pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
def build(): def build():
autotools.make() mesontools.build()
def install(): def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) mesontools.install()
pisitools.dodoc("AUTHORS", "COPYING*", "NEWS", "README") pisitools.dodoc("AUTHORS", "COPYING", "COPYING.MPL", "COPYING.LGPL")
+17 -8
View File
@@ -1,25 +1,26 @@
<?xml version="1.0" ?> <?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd"> <!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI> <PISI>
<Source> <Source>
<Name>libnice</Name> <Name>libnice</Name>
<Homepage>https://nice.freedesktop.org</Homepage> <Homepage>https://libnice.freedesktop.org/</Homepage>
<Packager> <Packager>
<Name>PisiLinux Community</Name> <Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email> <Email>admins@pisilinux.org</Email>
</Packager> </Packager>
<License>MPL-1.1</License> <License>MPLv1.1</License>
<License>LGPLv2.1</License> <License>LGPLv2.1</License>
<IsA>app:console</IsA> <IsA>app:console</IsA>
<IsA>library</IsA> <IsA>library</IsA>
<Summary>GLib ICE library</Summary> <Summary>A GLib ICE implementation.</Summary>
<Description>Nice is an implementation of the IETF's draft Interactive Connectivity Establishment standard (ICE).</Description> <Description>libnice is a library that implements the Interactive Connectivity Establishment standard.</Description>
<Archive sha1sum="db397ddad3ab97ed6818ea2c4ba85647adf6b34c" type="targz">http://nice.freedesktop.org/releases/libnice-0.1.15.tar.gz</Archive> <Archive sha1sum="4394e2d4b9482ddd3acaa0fe1bf9a79e8d9cb513" type="targz">https://libnice.freedesktop.org/releases/libnice-0.1.22.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>meson</Dependency>
<Dependency>glib2-devel</Dependency> <Dependency>glib2-devel</Dependency>
<Dependency>gnutls-devel</Dependency> <Dependency>gnutls-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
<Dependency>gstreamer-devel</Dependency> <Dependency>gstreamer-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
</BuildDependencies> </BuildDependencies>
</Source> </Source>
@@ -43,17 +44,25 @@
<Name>libnice-devel</Name> <Name>libnice-devel</Name>
<Summary>Development files for libnice</Summary> <Summary>Development files for libnice</Summary>
<RuntimeDependencies> <RuntimeDependencies>
<Dependency release="current">libnice</Dependency>
<Dependency>glib2-devel</Dependency> <Dependency>glib2-devel</Dependency>
<Dependency>gnutls-devel</Dependency> <Dependency>gnutls-devel</Dependency>
<Dependency release="current">libnice</Dependency>
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
<Path fileType="header">/usr/include</Path> <Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path> <Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/share/gir-1.0</Path>
</Files> </Files>
</Package> </Package>
<History> <History>
<Update release="5">
<Date>2025-02-06</Date>
<Version>0.1.22</Version>
<Comment>Version bump.</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="4"> <Update release="4">
<Date>2019-04-22</Date> <Date>2019-04-22</Date>
<Version>0.1.15</Version> <Version>0.1.15</Version>