Files
zulip/scripts/lib/build-pgroonga
Anders Kaseorg 91bfebca7d install: Replace wget with curl.
curl uses Happy Eyeballs to avoid long timeouts on systems with broken
IPv6.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
2021-06-25 09:05:07 -07:00

15 lines
279 B
Bash
Executable File

#!/usr/bin/env bash
set -x
set -e
PGROONGA_VERSION="2.2.8"
cd "$(mktemp -d)"
curl -LO https://packages.groonga.org/source/pgroonga/pgroonga-"$PGROONGA_VERSION".tar.gz
tar xf pgroonga-"$PGROONGA_VERSION".tar.gz
cd pgroonga-"$PGROONGA_VERSION"
make HAVE_MSGPACK=1
make install