11 lines
128 B
Bash
Executable file
11 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
|