You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
378 B
14 lines
378 B
# go to script directory |
|
cd "${0%/*}" |
|
|
|
export PATH="$HOME/.new_local/bin:$PATH" |
|
export LIBRARY_PATH="$HOME/gtk/inst/lib:$LIBRARY_PATH" |
|
|
|
curl -L http://www.portaudio.com/archives/pa_stable_v190600_20161030.tgz -o pa_stable_v190600_20161030.tgz |
|
tar xzf pa_stable_*.tgz |
|
|
|
cd portaudio |
|
|
|
./configure --enable-cxx --disable-mac-universal --prefix=$HOME/gtk/inst |
|
make -j2 |
|
make install
|
|
|