1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- # -*- 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 = "mozjs%s/js/src" % get.srcVERSION()
- shelltools.export("SHELL","/bin/sh")
- WorkDir = "firefox-%s" %get.srcVERSION()
- def setup():
- #shelltools.cd("js/src")
- #shelltools.system("sed -i 's/(defined\((@TEMPLATE_FILE)\))/\1/' config/milestone.pl ")
- shelltools.export("CC", "gcc")
- shelltools.export("CXX", "g++")
- shelltools.system("mkdir -p build-js")
- shelltools.cd("build-js")
- shelltools.system("sh ../js/src/configure.in \
- --prefix=/usr \
- --libdir=/usr/lib \
- --enable-readline \
- --with-intl-api \
- --disable-debug \
- --disable-debug-symbols \
- --disable-jemalloc \
- --disable-strip \
- --enable-hardening \
- --enable-linker=gold \
- --enable-optimize \
- --enable-readline \
- --enable-release \
- --enable-shared-js \
- --enable-tests \
- --with-intl-api \
- --with-system-zlib \
- --with-system-nspr \
- --without-system-icu")
- def build():
- shelltools.cd("build-js")
- autotools.make()
- def check():
- shelltools.cd("build-js")
- #autotools.make("-C js/src check-jstests")
- #autotools.make("-C js/src check-jit-test")
- def install():
- shelltools.cd("build-js")
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- pisitools.remove("/usr/lib/*.ajs")
- #for polkit
- #pisitools.rename("/usr/lib/pkgconfig/mozjs-..pc", "mozjs-17.0.pc")
- #pisitools.remove("usr/lib/libmozjs-..a")
- shelltools.cd("..")
- pisitools.dodoc("README*")
- # add link for polkit
- #pisitools.dosym("libmozjs-..so", "/usr/lib/libmozjs-17.0.so")
|