libseccomp-2.5.4

This commit is contained in:
4fury-c3440d8
2023-03-19 10:40:53 +03:00
parent 44132460a2
commit eeb43c5862
2 changed files with 20 additions and 9 deletions
+6 -7
View File
@@ -2,19 +2,18 @@
# -*- 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 autotools
from pisi.actionsapi import get
from pisi.actionsapi import shelltools
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools, get
def setup():
#shelltools.system("sh ./autogen.sh")
autotools.configure()
autotools.configure("PYTHON=python3")
def build():
autotools.make()
def check():
autotools.make("check")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())