aboutsummaryrefslogtreecommitdiff
path: root/packages/win32_inno/README.txt
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2004-03-09 01:40:15 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2004-03-09 01:40:15 +0000
commit328b80fd0da4937a1ae57b3a5cb8675bbb654087 (patch)
tree9b3b73f5788eeda32d51394071918bcfd0df98ba /packages/win32_inno/README.txt
parent65948e403329b6d8bd6027e38dd243b1baa096eb (diff)
added dir structure
svn path=/trunk/; revision=1393
Diffstat (limited to 'packages/win32_inno/README.txt')
-rw-r--r--packages/win32_inno/README.txt47
1 files changed, 47 insertions, 0 deletions
diff --git a/packages/win32_inno/README.txt b/packages/win32_inno/README.txt
index 89059dda..35639fc9 100644
--- a/packages/win32_inno/README.txt
+++ b/packages/win32_inno/README.txt
@@ -1,7 +1,11 @@
+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
@@ -9,5 +13,48 @@ 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>