Files
2021-02-19 16:39:37 +03:00

34 lines
945 B
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 shelltools
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
#autotools.autoreconf("-vif")
shelltools.system("sh autogen.sh")
autotools.configure("--enable-threads \
--enable-compress \
--disable-encrypt \
--with-initramfsdir=/usr/sbin \
--disable-resume-static")
#kernel panic
#--with-initramfsdir=/usr/sbin
def build():
autotools.make()
def install():
pisitools.dodir("/etc")
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
#pisitools.removeDir("/dev")
shelltools.touch("%s/etc/suspend.key" % get.installDIR())