new packages: dtc, glusterfs, libiscsi for qemu

This commit is contained in:
suvari
2022-02-05 23:47:55 +03:00
parent dd69d15626
commit eae96d8186
13 changed files with 547 additions and 3 deletions
+38
View File
@@ -0,0 +1,38 @@
#!/usr/bin/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
autotools.autoreconf("-fi")
shelltools.system("NOCONFIGURE=1 ./autogen.sh")
autotools.configure("--disable-static \
--sbindir=/usr/bin \
--with-mountutildir=/usr/bin \
--prefix=/usr \
--without-selinux \
--sysconfdir=/etc \
--localstatedir=/var \
--mandir=/usr/share/man \
--libexecdir=/usr/lib \
--with-tmpfilesdir=/usr/lib/tmpfiles.d \
--enable-gnfs")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def check():
autotools.make("check")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "COPYING*", "README*")