forked from pure-data/pure-data
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathINSTALL_ORIGINAL.txt
41 lines (33 loc) · 1.49 KB
/
INSTALL_ORIGINAL.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Quick compilation instructions for Gnu/linux or Mac OSX, or Windows if you have
installed Cygwin: make sure "automake" is installed as well as the usual C
compiler chain. Then in this directory, run the following commands:
./autogen.sh
./configure
make
If you need jack support, add the corresponding flag to "configure":
./configure --enable-jack
If made this way, Pd will not run until it has been "installed", either via
$ sudo make install or, for instance, $ make install DESTDIR=~/pd-xxx prefix=/
Alternatively, and often more simply, you can use the fallback makefiles in
"src" for gnu/linux, Mac OSX, or Microsoft Visual C. On linux, for example, cd
to src and type "make -f makefile.gnu". You can then run directly out of the
pd/bin directory without even having to do the "install" step.
Special instructions for Microsoft Visual C: cd to src and type "make -f
makefile.nt". Then CD to the various subdirs of extra and type "make nt" in
each.
Various dependencies:
- in linux and Mac you need Tcl/Tk
(apparently always present for Mac and usually there for linux).
- On linux you may also need:
- the ALSA "dev" package:
$ yum install alsa-lib-devel
or
$ sudo apt-get install libasound2-dev
- the JACK "dev" package:
$ yum install jack-audio-connection-kit-devel
or
$ sudo apt-get install libjack-dev
or
$ sudo apt-get install libjack-jackd2-dev)
- libtool (if using the "autogen" method):
$ sudo apt-get install libtool