mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
12 lines
257 B
Bash
12 lines
257 B
Bash
|
#!/bin/bash
|
||
|
mkdir /tmp/capnproto-install
|
||
|
cd /tmp/capnproto-install
|
||
|
curl -O https://capnproto.org/capnproto-c++-0.9.1.tar.gz
|
||
|
tar zxf capnproto-c++-0.9.1.tar.gz
|
||
|
cd capnproto-c++-0.9.1
|
||
|
./configure
|
||
|
make -j6 check
|
||
|
make install
|
||
|
cd /
|
||
|
rm -rf /tmp/capnproto-install
|