7 lines
84 B
Bash
7 lines
84 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
./autogen.sh;
|
||
|
|
./configure --prefix=$(pwd)/target;
|
||
|
|
make -j
|
||
|
|
make install
|