# PortAudio v19 20071207
# ======================
# If you ever want to uninstall PortAudio or clean up files from an old
# version before installing a new one, skip to the bottom for instructions
cd
mkdir -p -m 0700 installed
( cd installed ; rm -f portaudio_*.zip pa_stable_*.tar.gz )
mv pa_stable_v19_20071207.tar.gz installed/
# If you ever want to uninstall PortAudio, this should do it:
cd
su
test -d src/portaudio &&
( cd src/portaudio ; make uninstall ; cd .. ; rm -r ./portaudio )
test -d src/portaudio_* && ( cd src/portaudio_* ; make uninstall )
rm -f /usr/local/include/portaudio.h \
/usr/local/lib/libportaudio.* \
/usr/local/lib/pkgconfig/portaudio-2.0.pc
ldconfig
exit
find ~/src -maxdepth 1 -type d -name "portaudio_*" -exec rm -r {} \;
rm -f ~/installed/portaudio_*.zip ~/installed/pa_stable_*.tar.gz