7 lines
83 B
Bash
7 lines
83 B
Bash
|
#!/bin/bash
|
||
|
set -exuo pipefail
|
||
|
|
||
|
./bootstrap
|
||
|
./configure --prefix=$HOME/local/
|
||
|
make
|