blob: 6b645dfbb3015ee2f9c493b4718c8116eae958d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
ISSUE=`cut -f 1 -d ' ' /etc/issue`
if test "$ISSUE" = "Ubuntu"; then
FFTW3DEV=fftw3-dev
else
FFTW3DEV=libfftw3-dev
fi
sudo apt-get install \
build-essential automake autotools-dev doxygen $FFTW3DEV guile-1.8 \
libasound2-dev libboost-dev libcppunit-dev libjack0.100.0-dev \
libsdl1.2-dev portaudio19-dev libtool libusb-dev pkg-config python \
python-all-dev python-central python-numpy python-wxgtk2.8 sdcc swig xmlto
|