12345678910111213141516171819202122232425262728293031323334 |
- # -*- 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())
|