index : packages | |
Archlinux32 package modifications | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | community/mongodb/PKGBUILD | 11 |
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' +)) |