55 lines
1.6 KiB
Python
55 lines
1.6 KiB
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Licensed under the GNU General Public License, version 3.
|
|
# See the file http://www.gnu.org/copyleft/gpl.txt.
|
|
|
|
from pisi.actionsapi import autotools
|
|
from pisi.actionsapi import pisitools
|
|
from pisi.actionsapi import shelltools
|
|
from pisi.actionsapi import get
|
|
|
|
|
|
Libdir = "/usr/lib32" if get.buildTYPE() == "emul32" else "/usr/lib"
|
|
|
|
def setup():
|
|
options = "--sysconfdir=/etc \
|
|
--with-zlib \
|
|
--with-pkgconfigdir=/%s/pkgconfig \
|
|
--with-noarch-pkgconfigdir=/%s/pkgconfig \
|
|
--with-xz" % (Libdir, Libdir)
|
|
|
|
if get.buildTYPE() == "emul32":
|
|
options += " --bindir=/usr/emul32 \
|
|
--with-rootlibdir=/lib32 \
|
|
--libdir=/usr/lib32"
|
|
|
|
if get.buildTYPE() != "emul32":
|
|
options += " --with-zstd --with-rootlibdir=/lib"
|
|
|
|
autotools.configure(options)
|
|
|
|
def build():
|
|
autotools.make()
|
|
|
|
# need git for check
|
|
#def check():
|
|
# autotools.make("check")
|
|
|
|
def install():
|
|
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
|
|
|
if get.buildTYPE() == "emul32":
|
|
pisitools.removeDir("/usr/emul32")
|
|
return
|
|
|
|
pisitools.dosym("modprobe.d.5.gz","/usr/share/man/man5/modprobe.conf.5.gz")
|
|
for sym in ["modinfo","insmod","rmmod","depmod","modprobe"]:
|
|
pisitools.dosym("/usr/bin/kmod","/sbin/%s" % sym)
|
|
|
|
pisitools.dosym("/usr/bin/kmod","/bin/lsmod")
|
|
|
|
pisitools.makedirs("%s/etc/depmod.d" % get.installDIR())
|
|
pisitools.makedirs("%s/etc/modprobe.d" % get.installDIR())
|
|
pisitools.dodoc("NEWS", "README*", "COPYING")
|