wok annotate spidermonkey/receipt @ rev 18115
glib-dev,qcad: clean files.list.lzma, fix overwriting(for what?) get-scripts $depends
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Sat Jun 06 21:23:13 2015 +0200 (2015-06-06) |
parents | a34b2bcf117e |
children | 3705d68ed8f3 |
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" |
jozee@3119 | 11 WEB_SITE="http://www.mozilla.org/js/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 |
jozee@3119 | 22 |
gokhlayeh@8689 | 23 # Fix from Archlinux |
gokhlayeh@8689 | 24 # http://projects.archlinux.org/svntogit/community.git/tree/spidermonkey/trunk/PKGBUILD |
pascal@9197 | 25 #patch -p0 < $stuff/spidermonkey-Makefile.patch || return 1 |
gokhlayeh@8689 | 26 sed -i 's|include|include/js|' rules.mk || return 1 |
gokhlayeh@8689 | 27 # patch Makefile for threadsafe support with native nspr |
gokhlayeh@8689 | 28 patch -p2 -i $stuff/spidermonkey-1.7-threadsafe.patch || return 1 |
gokhlayeh@8689 | 29 # FS#16673 |
gokhlayeh@8689 | 30 export CFLAGS="${CFLAGS} -DJS_C_STRINGS_ARE_UTF8" |
gokhlayeh@8689 | 31 # build - threadsafe |
gokhlayeh@8689 | 32 make -j1 -f Makefile.ref BUILD_OPT=1 JS_THREADSAFE=1 \ |
pascal@15290 | 33 DIST=$DESTDIR/usr all export 2>&1 | grep -v 'OBJ/nspr/Version' |
jozee@3119 | 34 } |
jozee@3119 | 35 |
jozee@3119 | 36 # Rules to gen a SliTaz package suitable for Tazpkg. |
jozee@3119 | 37 genpkg_rules() |
jozee@3119 | 38 { |
jozee@3119 | 39 mkdir -p $fs/usr/lib |
jozee@3119 | 40 |
pascal@15290 | 41 cp -a $install/usr/bin $fs/usr |
pascal@15290 | 42 cp -a $install/usr/lib/*so* $fs/usr/lib |
jozee@3119 | 43 } |