wok annotate spidermonkey/receipt @ rev 13034

Add compiler & vnc tags
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 12 20:04:51 2012 +0200 (2012-06-12)
parents d68eaab08c02
children 44d062fcbe9b
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"
jozee@3119 8 SOURCE="js"
jozee@3119 9 TARBALL="$SOURCE-$VERSION.tar.gz"
jozee@3119 10 WEB_SITE="http://www.mozilla.org/js/spidermonkey/"
jozee@3119 11 WGET_URL="http://ftp.mozilla.org/pub/mozilla.org/js/$TARBALL"
jozee@3119 12 TAGS="javascript"
jozee@3119 13
pankso@9771 14 DEPENDS="nspr"
pankso@9771 15 BUILD_DEPENDS="nspr-dev"
pankso@9771 16
jozee@3119 17 # Rules to configure and make the package.
jozee@3119 18 compile_rules()
jozee@3119 19 {
gokhlayeh@8689 20 cd $src/src
jozee@3119 21
gokhlayeh@8689 22 # Fix from Archlinux
gokhlayeh@8689 23 # http://projects.archlinux.org/svntogit/community.git/tree/spidermonkey/trunk/PKGBUILD
pascal@9197 24 #patch -p0 < $stuff/spidermonkey-Makefile.patch || return 1
gokhlayeh@8689 25 sed -i 's|include|include/js|' rules.mk || return 1
gokhlayeh@8689 26 # patch Makefile for threadsafe support with native nspr
gokhlayeh@8689 27 patch -p2 -i $stuff/spidermonkey-1.7-threadsafe.patch || return 1
gokhlayeh@8689 28 # FS#16673
gokhlayeh@8689 29 export CFLAGS="${CFLAGS} -DJS_C_STRINGS_ARE_UTF8"
gokhlayeh@8689 30 # build - threadsafe
gokhlayeh@8689 31 make -j1 -f Makefile.ref BUILD_OPT=1 JS_THREADSAFE=1 \
gokhlayeh@8689 32 DIST=$DESTDIR/usr all export
jozee@3119 33 }
jozee@3119 34
jozee@3119 35 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@3119 36 genpkg_rules()
jozee@3119 37 {
jozee@3119 38 mkdir -p $fs/usr/lib
jozee@3119 39
jozee@3119 40 cp -a $_pkg/usr/bin $fs/usr
jozee@3119 41 cp -a $_pkg/usr/lib/*so* $fs/usr/lib
jozee@3119 42 }