wok annotate spidermonkey/receipt @ rev 23970
Up tazlito (528)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Oct 04 13:29:03 2020 +0000 (2020-10-04) |
parents | 238f49914432 |
children | 934055de50e2 |
rev | line source |
---|---|
jozee@3119 | 1 # SliTaz package receipt. |
jozee@3119 | 2 |
jozee@3119 | 3 PACKAGE="spidermonkey" |
claudinei@9177 | 4 VERSION="1.8.0-rc1" |
jozee@3119 | 5 CATEGORY="multimedia" |
jozee@3119 | 6 SHORT_DESC="Mozilla C implementation of Javascript" |
jozee@3119 | 7 MAINTAINER="jozee@slitaz.org" |
pascal@15290 | 8 LICENSE="MPL GPL2 LGPL2.1" |
jozee@3119 | 9 SOURCE="js" |
jozee@3119 | 10 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@20679 | 11 WEB_SITE="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/SpiderMonkey" |
jozee@3119 | 12 WGET_URL="http://ftp.mozilla.org/pub/mozilla.org/js/$TARBALL" |
jozee@3119 | 13 TAGS="javascript" |
jozee@3119 | 14 |
pankso@9771 | 15 DEPENDS="nspr" |
pankso@9771 | 16 BUILD_DEPENDS="nspr-dev" |
pankso@9771 | 17 |
jozee@3119 | 18 # Rules to configure and make the package. |
jozee@3119 | 19 compile_rules() |
jozee@3119 | 20 { |
gokhlayeh@8689 | 21 cd $src/src |
pascal@20214 | 22 sed -i 's|uname -m|echo i486|' fdlibm/Makefile.in config/*.mk config.mk |
jozee@3119 | 23 |
gokhlayeh@8689 | 24 # Fix from Archlinux |
gokhlayeh@8689 | 25 # http://projects.archlinux.org/svntogit/community.git/tree/spidermonkey/trunk/PKGBUILD |
pascal@9197 | 26 #patch -p0 < $stuff/spidermonkey-Makefile.patch || return 1 |
gokhlayeh@8689 | 27 sed -i 's|include|include/js|' rules.mk || return 1 |
gokhlayeh@8689 | 28 # patch Makefile for threadsafe support with native nspr |
gokhlayeh@8689 | 29 patch -p2 -i $stuff/spidermonkey-1.7-threadsafe.patch || return 1 |
gokhlayeh@8689 | 30 # FS#16673 |
gokhlayeh@8689 | 31 export CFLAGS="${CFLAGS} -DJS_C_STRINGS_ARE_UTF8" |
gokhlayeh@8689 | 32 # build - threadsafe |
gokhlayeh@8689 | 33 make -j1 -f Makefile.ref BUILD_OPT=1 JS_THREADSAFE=1 \ |
pascal@15290 | 34 DIST=$DESTDIR/usr all export 2>&1 | grep -v 'OBJ/nspr/Version' |
jozee@3119 | 35 } |
jozee@3119 | 36 |
jozee@3119 | 37 # Rules to gen a SliTaz package suitable for Tazpkg. |
jozee@3119 | 38 genpkg_rules() |
jozee@3119 | 39 { |
jozee@3119 | 40 mkdir -p $fs/usr/lib |
jozee@3119 | 41 |
pascal@15290 | 42 cp -a $install/usr/bin $fs/usr |
pascal@15290 | 43 cp -a $install/usr/lib/*so* $fs/usr/lib |
jozee@3119 | 44 } |