1234567891011121314151617181920212223242526272829 |
- #!/usr/bin/python
- # -*- coding: utf-8 -*-
- #
- # Copyright 2010 TUBITAK/BILGEM
- # Licensed under the GNU General Public License, version 2.
- # See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
- from pisi.actionsapi import autotools
- from pisi.actionsapi import pisitools
- from pisi.actionsapi import get
- Libdir = "/usr/lib32" if get.buildTYPE() == "emul32" else "/usr/lib"
- def setup():
- autotools.autoreconf("-vif")
- autotools.configure("--disable-documentation --disable-static")
- pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
- def build():
- autotools.make()
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- if get.buildTYPE() == "emul32":
- return
- pisitools.dodoc("COPYING", "TODO", "README")
|