toxon
/
lita-tox
Archived
1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lita-tox/bin/build/libsodium

12 lines
128 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'
set -vx
pushd 'vendor/libsodium'
./autogen.sh
./configure
make install
popd