12 lines
130 B
Text
12 lines
130 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -euo pipefail
|
||
|
IFS=$'\n\t'
|
||
|
set -vx
|
||
|
|
||
|
pushd 'vendor/libtoxcore'
|
||
|
autoreconf -i
|
||
|
./configure
|
||
|
make install
|
||
|
popd
|