blob: 35639fc95db0ecb09e01ca8c7a36b59157bb8d89 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
Package Maker
This package is assembled using Inno Setup
(http://www.jrsoftware.org/isinfo.php ). Check pd.iss for what's happening.
Makefile
Currently, the Makefile.nmake only compiles the 'externals' collection. It
can also compile flext if you manually check the flext config and uncomment
things from the Makefile.nmake. Ideally, everything would be compiled and
built from a Makefile using MinGW, so that only free software would be
needed. Currently, to compile Pd on Windows you need MS Visual Studio 6.0 or
better.
Directory Layout
This directory is for files that are used in the creation of the Windows
installer. In order to use this to compile/assemble Pd and externals.
+-|
+-abstractions
|
+-packages-|
| +-win32_inno
|
+-doc-|
| +-additional
| +-pddp
| +-tutorials
|
+-externals-|
| +-...
| +-ext13
| +-ggee
| +-maxlib
| +-unauthorized
| +-zexy
| +-...
|
+-pd-|
+-src
+-doc
+-etc...
The recommended way to do this is (these are probably somewhat wrong):
mkdir pure-data && cd pure-data
setenv CVSROOT :pserver:anonymous@cvs.sourceforge.net:/cvsroot/pure-data
unzip pd source
cvs checkout packages
cvs checkout doc
cvs checkout externals
cd packages/win32_inno
make clean && make
-Hans-Christoph Steiner <hans@at.or.at>
|