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 -*-
#
# 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 pisitools
from pisi.actionsapi import get
from pisi.actionsapi import mesontools, pisitools
i = ''.join([
' --prefix=/usr',
' --buildtype=release',
' -Dcrypto-library=gnutls '
])
def setup():
autotools.autoreconf("-fi")
autotools.configure("--disable-static \
--with-gstreamer-0.10=no")
#pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
mesontools.configure(i)
def build():
autotools.make()
mesontools.build()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
mesontools.install()
pisitools.dodoc("AUTHORS", "COPYING*", "NEWS", "README")
pisitools.dodoc("AUTHORS", "COPYING", "COPYING.MPL", "COPYING.LGPL")