diff options
author | Miguel De Anda <miguel@thedeanda.com> | 2017-10-19 20:42:02 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-10-19 20:42:02 +0700 |
commit | 71c7c3f01f7975a02faf4d50c02ab031af3f6081 (patch) | |
tree | 97915bc261cd7dc40e51451c3e32a492dd5bec5d /system/mongodb/mongodb.SlackBuild | |
parent | 1d0a4b9a1936e80584572aa26ca4e9fca1b062b7 (diff) |
system/mongodb: Updated for version 3.4.9.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/mongodb/mongodb.SlackBuild')
-rw-r--r-- | system/mongodb/mongodb.SlackBuild | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/system/mongodb/mongodb.SlackBuild b/system/mongodb/mongodb.SlackBuild index b74d59adfc9c3..99d3331f9e952 100644 --- a/system/mongodb/mongodb.SlackBuild +++ b/system/mongodb/mongodb.SlackBuild @@ -24,9 +24,10 @@ PRGNAM="mongodb" -VERSION=${VERSION:-3.4.1} +VERSION=${VERSION:-3.4.9} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} +MAKEJOBS=${MAKEJOBS:-1} if [ -z "$ARCH" ]; then case "$( uname -m )" in @@ -86,9 +87,9 @@ find -L . \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; if [ "$ARCH" = "x86_64" ]; then - scons --ssl --disable-warnings-as-errors --prefix=${PKG}/usr core install + scons -j $MAKEJOBS --ssl --disable-warnings-as-errors --prefix=${PKG}/usr core install else - scons --ssl --disable-warnings-as-errors --prefix=${PKG}/usr core --wiredtiger=off install + scons -j $MAKEJOBS --ssl --disable-warnings-as-errors --prefix=${PKG}/usr core --wiredtiger=off install fi find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ |