mirror of
https://github.com/zulip/zulip.git
synced 2025-10-27 18:13:58 +00:00
Groonga does not have a ppa package for Focal yet so pgroonga is built from the source. Postgres 12 is used when os_version is 20.04.
15 lines
276 B
Bash
Executable File
15 lines
276 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -x
|
|
set -e
|
|
|
|
PGROONGA_VERSION="2.2.3"
|
|
|
|
cd "$(mktemp -d)"
|
|
|
|
wget https://packages.groonga.org/source/pgroonga/pgroonga-"$PGROONGA_VERSION".tar.gz
|
|
tar xvf pgroonga-"$PGROONGA_VERSION".tar.gz
|
|
cd pgroonga-"$PGROONGA_VERSION"
|
|
|
|
make HAVE_MSGPACK=1
|
|
make install
|