summaryrefslogtreecommitdiff
path: root/repo/skip/js78.xibuild
blob: 8ac277c5068fdc0d02eae3e1fd6b36da3662cb7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/bin/sh

MAKEDEPS="gcc autoconf2-13 icu rustc zlib which zip llvm patch make"
DEPS="readline nspr bash zlib"

PKG_VER=78.15.0
SOURCE=https://archive.mozilla.org/pub/firefox/releases/${PKG_VER}esr/source/firefox-${PKG_VER}esr.source.tar.xz
ADDITIONAL="
    patches/js78/disable-jslint.patch
    patches/js78/fd6847c9416f9eebde636e21d794d25d1be8791d.patch
    patches/js78/fix-musl-build.patch
    patches/js78/fix-python3.10-compilation.patch
    "

DESC="JavaScript interpreter and libraries - Version 78"

prepare () {
    apply_patches

    mountpoint -q /dev/shm || mount -t tmpfs devshm /dev/shm
    export PATH=/opt/rustc/bin:$PATH
    export LD_LIBRARY_PATH=/opt/rustc/lib:$LD_LIBRARY_PATH
}

build () {
    mkdir obj &&
    cd    obj &&

    CC=gcc CXX=g++ \
    CFLAGS="-fPIE -fPIC" CXXFLAGS="-fPIE -fPIC" SHELL=/bin/bash PYTHON=/usr/bin/python3 \
        ../js/src/configure --prefix=/usr \
            --disable-jemalloc \
            --disable-optimize \
            --enable-ctypes \
            --enable-readline \
            --enable-shared-js \
            --enable-system-ffi \
            --enable-tests \
            --with-intl-api \
            --with-system-icu \
            --with-system-nspr \
            --enable-hardening \
            --enable-release \
            --with-system-zlib \
            --host=x86_64-linux-musl 

    make -j1

}

package () {
    make DESTDIR=$PKG_DEST install 
    [ -f $PKG_DEST/usr/lib/libjs_static.ajs ] && rm $PKG_DEST/usr/lib/libjs_static.ajs 
    sed -i '/@NSPR_CFLAGS@/d' $PKG_DEST/usr/bin/js78-config
}