veilid/scripts/earthly/install_capnproto.sh

29 lines
635 B
Bash
Raw Normal View History

2022-01-09 20:17:36 +00:00
#!/bin/bash
mkdir /tmp/capnproto-install
2022-11-02 23:37:47 +00:00
pushd /tmp/capnproto-install
2023-06-16 23:58:06 +00:00
curl -O https://capnproto.org/capnproto-c++-0.10.4.tar.gz
tar zxf capnproto-c++-0.10.4.tar.gz
cd capnproto-c++-0.10.4
2022-11-02 23:37:47 +00:00
./configure --without-openssl
2023-02-20 22:56:53 +00:00
make -j$1 check
2022-11-02 23:37:47 +00:00
if [ "$EUID" -ne 0 ]; then
if command -v checkinstall &> /dev/null; then
sudo checkinstall -y
cp *.deb ~
else
sudo make install
fi
popd
sudo rm -rf /tmp/capnproto-install
else
if command -v checkinstall &> /dev/null; then
checkinstall -y
cp *.deb ~
else
make install
fi
popd
rm -rf /tmp/capnproto-install
fi