mirror of
https://github.com/fluencelabs/wasmer
synced 2025-04-25 10:22:19 +00:00
8 lines
198 B
Bash
8 lines
198 B
Bash
|
#!/usr/bin/env bash
|
||
|
curl -O https://download.libsodium.org/libsodium/releases/libsodium-1.0.17.tar.gz
|
||
|
tar xf libsodium-1.0.17.tar.gz
|
||
|
cd libsodium-1.0.17/
|
||
|
./configure
|
||
|
make && make check
|
||
|
make install
|