blob: c082b882cbb4f941af76b70ea1b27f39dc3bea41 (
plain)
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
|
To build everything and create an generic installer for linux, do this:
Download and run the script from CVS which will download all the sources from
anonymous CVS:
scripts/checkout-developer-layout.sh
Now you will have all of the sources in a directory called "pure-data". Next,
run these commands to build in the package:
cd packages/linux_make
make install
It will then compile and install everything into packages/linux_make/build.
The default installation prefix is "/usr/local". Pd will need to be installed
into that directory in order for it to find all its externals and docs. You
can compile everything to use a different prefix like this:
make install prefix=/usr
After you have everything built, you can make a tarball with a generated
Makefile which will install and uninstall everything:
make tarbz2
You can generate just the Makefile used for installation using:
make installer_makefile
|