12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #!/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 get
- from pisi.actionsapi import autotools
- from pisi.actionsapi import pisitools
- from pisi.actionsapi import shelltools
- WorkDir="icu/source"
- def setup():
- autotools.autoconf("-f")
- options = "--with-data-packaging=library \
- --disable-samples \
- --disable-silent-rules"
-
- if get.buildTYPE() == "_emul32":
- shelltools.export("CC", "%s -m32" % get.CC())
- shelltools.export("CXX", "%s -m32" % get.CXX())
-
- options += " --libdir=/usr/lib32 \
- --bindir=/_emul32/bin \
- --sbindir=/_emul32/sbin"
-
- autotools.configure(options)
- pisitools.dosed("config/mh-linux", "-nodefaultlibs -nostdlib")
- def build():
- autotools.make()
- def check():
- autotools.make("-k check || true")
- def install():
- autotools.rawInstall('-j1 DESTDIR="%s"' % get.installDIR())
- if get.buildTYPE() == "_emul32":
- pisitools.domove("/_emul32/bin/icu-config", "/usr/bin", "icu-config-32")
- pisitools.removeDir("/_emul32")
- for f in shelltools.ls("%s/usr/lib32/pkgconfig" % get.installDIR()):
- pisitools.dosed("%s/usr/lib32/pkgconfig/%s" % (get.installDIR(), f), "_emul32", "usr")
- pisitools.dosed("%s/usr/lib32/icu/%s/Makefile.inc" % ( get.installDIR(), get.srcVERSION()), "_emul32", "usr")
- pisitools.dosed("%s/usr/bin/icu-config-32" % get.installDIR(), "_emul32", "usr")
- return
- pisitools.dohtml("../*.html")
|