summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--community/mongodb/PKGBUILD11
1 files changed, 11 insertions, 0 deletions
diff --git a/community/mongodb/PKGBUILD b/community/mongodb/PKGBUILD
new file mode 100644
index 00000000..f8c6ceb5
--- /dev/null
+++ b/community/mongodb/PKGBUILD
@@ -0,0 +1,11 @@
+# wiredtiger is 64-bit only and blacklisted, so build mongodb without it
+
+depends=($(
+ printf '%s\n' "${depends[@]}" | \
+ sed '/^wiredtiger/d'
+))
+
+_scons_args=($(
+ printf '%s\n' "${_scons_args[@]}" | \
+ sed 's/--use-system-wiredtiger/--wiredtiger=off/g'
+))