diff options
author | Miguel De Anda <miguel@thedeanda.com> | 2016-08-07 17:51:35 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-08-07 18:55:32 +0700 |
commit | b61d2db033397f507fe79b4277c0d15bfb99dc47 (patch) | |
tree | 19d482e123f1d14966fd5da4abc9eac4f6f4e179 /system/mongodb/mongodb.SlackBuild | |
parent | 04af1e1420db2b1f7da2b97ef1076589322b7ae6 (diff) |
system/mongodb: Updated for version 3.2.8.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/mongodb/mongodb.SlackBuild')
-rw-r--r-- | system/mongodb/mongodb.SlackBuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/system/mongodb/mongodb.SlackBuild b/system/mongodb/mongodb.SlackBuild index d9c824da893fa..23023fe7dee4f 100644 --- a/system/mongodb/mongodb.SlackBuild +++ b/system/mongodb/mongodb.SlackBuild @@ -24,7 +24,7 @@ PRGNAM="mongodb" -VERSION=${VERSION:-3.2.0} +VERSION=${VERSION:-3.2.8} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -91,6 +91,10 @@ else scons --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 \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + + mkdir -p ${PKG}/usr/doc/${PRGNAM}-${VERSION} cp distsrc/* ${PKG}/usr/doc/${PRGNAM}-${VERSION} |