wok annotate spidermonkey/receipt @ rev 8684

Fix dep: gnome-menus depends on libgio
author Antoine Bodin <gokhlayeh@slitaz.org>
date Thu Feb 17 18:56:09 2011 +0100 (2011-02-17)
parents 0b54a70ec4b1
children fbea817f94c5
rev   line source
jozee@3119 1 # SliTaz package receipt.
jozee@3119 2
jozee@3119 3 PACKAGE="spidermonkey"
jozee@3119 4 VERSION="1.7.0"
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 DEPENDS=""
jozee@3119 9 BUILD_DEPENDS=""
jozee@3119 10 SOURCE="js"
jozee@3119 11 TARBALL="$SOURCE-$VERSION.tar.gz"
jozee@3119 12 WEB_SITE="http://www.mozilla.org/js/spidermonkey/"
jozee@3119 13 WGET_URL="http://ftp.mozilla.org/pub/mozilla.org/js/$TARBALL"
jozee@3119 14 TAGS="javascript"
jozee@3119 15
jozee@3119 16 # Rules to configure and make the package.
jozee@3119 17 compile_rules()
jozee@3119 18 {
slaxemulator@8455 19 cd $src/src
jozee@3119 20 make -f Makefile.ref DIST=../_pkg/usr all export
jozee@3119 21
jozee@3119 22 }
jozee@3119 23
jozee@3119 24 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@3119 25 genpkg_rules()
jozee@3119 26 {
jozee@3119 27 mkdir -p $fs/usr/lib
jozee@3119 28
jozee@3119 29 cp -a $_pkg/usr/bin $fs/usr
jozee@3119 30 cp -a $_pkg/usr/lib/*so* $fs/usr/lib
jozee@3119 31 }