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
407 B
14 lines
407 B
#!/bin/bash -x |
|
export PATH="$HOME/.new_local/bin:$PATH" |
|
export LIBRARY_PATH="$HOME/gtk/inst/lib:$LIBRARY_PATH" |
|
# go to script directory |
|
cd "${0%/*}" || exit |
|
|
|
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 || exit |
|
|
|
./configure --enable-cxx --disable-mac-universal --prefix=$HOME/gtk/inst |
|
make -j2 |
|
make install
|
|
|