summaryrefslogtreecommitdiff
path: root/repo/system/js78.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/system/js78.xibuild')
-rw-r--r--repo/system/js78.xibuild42
1 files changed, 0 insertions, 42 deletions
diff --git a/repo/system/js78.xibuild b/repo/system/js78.xibuild
deleted file mode 100644
index 7b88f18..0000000
--- a/repo/system/js78.xibuild
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/bin/sh
-
-MAKEDEPS="gcc autoconf2-13 icu rustc which zip llvm patch make"
-DEPS="readline 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="
- https://www.linuxfromscratch.org/patches/blfs/svn/js-$PKG_VER-python_3_10-1.patch
- "
-
-DESC="JavaScript interpreter and libraries - Version 78"
-
-prepare () {
- patch -Np1 -i js-$PKG_VER-python_3_10-1.patch
-
- 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++ \
- ../js/src/configure --prefix=/usr \
- --with-intl-api \
- --with-system-zlib \
- --with-system-icu \
- --disable-jemalloc \
- --disable-debug-symbols \
- --enable-readline &&
- make
-
-}
-
-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
-}