1234567891011121314151617181920212223242526272829303132333435 |
- #!/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
- WorkDir = "dmraid/1.0.0.rc16-3/dmraid/"
- def builddiet():
- autotools.make("distclean")
- shelltools.export("CC", "diet %s %s %s -Os -static" % (get.CC(), get.CFLAGS(), get.LDFLAGS()))
- autotools.configure("--disable-libselinux \
- --disable-libsepol")
- autotools.make("-j1")
- pisitools.insinto("/sbin/", "tools/dmraid", "dmraid.static")
- def setup():
- autotools.configure("--enable-shared_lib")
- def build():
- autotools.make("-j1")
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- #builddiet()
- pisitools.dodoc("CHANGELOG", "README", "TODO", "KNOWN_BUGS", "doc/*")
|