changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra / scripts/install-rocksdb-pack.sh

changeset 322: 167a8ece2416
parent: 367bc1714864
child: 26539d346a67
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 07 Jul 2024 21:18:15 -0400
permissions: -rwxr-xr-x
description: ugh2
1 #!/bin/sh
2 # the rocksdb pack only includes the shared library and headers. the
3 # static library is shipped separately.
4 set -e
5 cd .stash/tmp
6 curl -O https://packy.compiler.company/dist/x86_64-unknown-linux-gnu/pack/rocksdb.tar.zst
7 unzstd rocksdb.tar.zst
8 tar -xvf rocksdb.tar
9 cd rocksdb
10 cp librocksdb.* /usr/local/lib/
11 cp -rf include/* /usr/local/include/