Skip to content
Snippets Groups Projects
Commit 553f5a89 authored by Emmanuel Milou's avatar Emmanuel Milou
Browse files

Git ignore *.so and *.swp files!!!

parent 0de37a5c
Branches
Tags
No related merge requests found
......@@ -11,6 +11,8 @@ Makefile
Makefile.in
*.spec
/config.*
*.swp
*.so
# Ignore rendered docs
doc/doxygen/html-everything
......
ok
#!/bin/sh
PORTAUDIO_SOURCE=http://portaudio.com/archives/pa_snapshot_v19.tar.gz
PORTAUDIO_FILE=$(basename $PORTAUDIO_SOURCE)
PORTAUDIO_DIR=portaudio
PORTAUDIO_CONFIGURE_ARG=$@
if [ ! -f $PORTAUDIO_FILE ]; then
wget $PORTAUDIO_SOURCE
fi
if [ ! -d $PORTAUDIO_DIR ]; then
tar xzvf $PORTAUDIO_FILE
fi
if [ ! -f $PORTAUDIO_DIR/Makefile ]; then
cd $PORTAUDIO_DIR
./configure --enable-cxx $PORTAUDIO_CONFIGURE_ARG
make
echo "To install portaudio (as root): "
echo "su -c \"cd $PORTAUDIO_DIR && make install\""
echo ""
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment