43 lines
1.4 KiB
Python
43 lines
1.4 KiB
Python
#!/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.rawConfigure("--enable-elf-shlibs \
|
|
--with-root-prefix='' \
|
|
--enable-nls \
|
|
--disable-e2initrd-helper \
|
|
--disable-libblkid \
|
|
--disable-libuuid \
|
|
--disable-fsck \
|
|
--disable-uuidd \
|
|
--enable-symlink-install \
|
|
--without-included-gettext")
|
|
|
|
def build():
|
|
autotools.make()
|
|
|
|
def check():
|
|
# remove sandbox violating test
|
|
for d in ("f_ext_journal", "t_ext_jnl_rm"):
|
|
shelltools.unlinkDir("%s/e2fsprogs-%s/tests/%s/" % (get.workDIR(), get.srcVERSION(), d))
|
|
#In chroot env. /dev should be mounted to pass all tests, that's all :)
|
|
autotools.make("-j1 check")
|
|
|
|
def install():
|
|
autotools.rawInstall("install install-libs LDCONFIG=/bin/true \
|
|
DESTDIR=%s root_sbindir=/sbin root_libdir=/lib" % get.installDIR())
|
|
|
|
# Unneeded stuff
|
|
pisitools.remove("/usr/lib/*.a")
|
|
|
|
pisitools.dodoc("README", "RELEASE-NOTES")
|