wok view mongodb/receipt @ rev 12810

readline: ARM want it :-) so we can cross compile bash
author Christophe Lincoln <pankso@slitaz.org>
date Sun May 20 03:01:49 2012 +0200 (2012-05-20)
parents ab72a4d08ed3
children e36062a9b169
line source
1 # SliTaz package receipt.
3 PACKAGE="mongodb"
4 VERSION="2.0.5"
5 CATEGORY="system-tools"
6 SHORT_DESC="MongoDB bridges the gap between key-value stores and traditional RDBMS systems"
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="pcre libboost-filesystem libboost-thread libboost-program-options \
9 spidermonkey"
10 BUILD_DEPENDS="$DEPENDS scons pcre-dev libboost-dev libboost-filesystem-dev \
11 libboost-thread-dev libboost-program-options-dev spidermonkey-dev"
12 TARBALL="$PACKAGE-src-r${VERSION}.tar.gz"
13 WEB_SITE="http://www.mongodb.org/"
14 WGET_URL="http://downloads.mongodb.org/src/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 scons all &&
21 scons --prefix=$DESTDIR/usr install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 }