summaryrefslogtreecommitdiff
path: root/community/mongodb/PKGBUILD
blob: f8c6ceb5973f57e950721396eab9ac082775361c (plain)
1
2
3
4
5
6
7
8
9
10
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'
))