gnucash/packaging/win32
Derek Atkins e751014bca Refactor daily_build.sh into build_package.sh
Create a build_tags.sh that will check for new tags
in the tag directory and rebuild them when they appear.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18122 57a11ea4-9604-0410-9ed3-97b8803252fd
2009-06-13 04:31:35 +00:00
..
build_package.sh Refactor daily_build.sh into build_package.sh 2009-06-13 04:31:35 +00:00
build_tags.sh Refactor daily_build.sh into build_package.sh 2009-06-13 04:31:35 +00:00
create_cross_mingw.sh Integrate create_cross_mingw.sh into install.sh. Minor cleanups. 2007-05-23 17:21:14 +00:00
daily_build.sh Refactor daily_build.sh into build_package.sh 2009-06-13 04:31:35 +00:00
defaults.sh Build mysql libdbi driver and include it in the win32 build 2009-06-09 23:41:39 +00:00
dist.sh Build mysql libdbi driver and include it in the win32 build 2009-06-09 23:41:39 +00:00
exetype.pl Use UNIX line delimiters in packaging/win32/exetype.pl. 2007-05-23 17:21:20 +00:00
functions.sh Win32: Minor change for emacs compat. 2008-08-02 12:04:06 +00:00
gnucash.iss.in Bug #571220: [Win32] Unset SCHEME_LIBRARY_PATH environment variable. 2009-02-15 17:23:16 +00:00
goffice-0.7.2-patch.diff [Win32] Update a whole bunch of packages. 2009-01-11 15:37:26 +00:00
Greek-4-5.1.11.isl Add Greek translation for Setup messages by Nikos Charonitakis. 2007-07-09 19:23:46 +00:00
gwenhywfar-3.6.0-patch.diff [Win32] Update online banking libraries. 2009-01-13 02:14:00 +00:00
install-fq-mods.cmd [Win32] Rename *.bat to *.cmd. 2009-02-08 13:02:56 +00:00
install.sh Build mysql libdbi driver and include it in the win32 build 2009-06-09 23:41:39 +00:00
libdbi-0.8.3.patch Win32: Add AC_LIBTOOL_WIN32_DLL to libdbi. 2008-10-05 17:15:49 +00:00
libdbi-drivers-dbd_mysql.c.patch Patch for mysql driver to fix win32 compilation issue 2009-06-10 12:20:20 +00:00
libdbi-drivers-dbd_sqlite3.c.patch Add support to build trunk with libdbi and dbi backend on win32/mingw 2008-08-17 16:38:31 +00:00
libdbi-drivers-Makefile.in.patch Add support to build trunk with libdbi and dbi backend on win32/mingw 2008-08-17 16:38:31 +00:00
libofx-0.8.3-patch.diff On Win32, add get_dtd_installation_directory to LibOFX. Fix #406286. 2007-02-11 17:30:54 +00:00
make_install.sh [Win32] Provide a bare variant of make_install.sh. 2009-01-11 18:47:34 +00:00
Makefile.am Fix distcheck problem 2009-05-14 01:30:24 +00:00
opensp-1.5.2-patch.diff Add compiling and installation of opensp, libofx and enable ofx support of gnucash 2007-02-06 16:19:23 +00:00
pi.sh Add pi.sh, a postinstall script of mingw. 2006-09-01 21:33:01 +00:00
README [Win32] Rename *.bat to *.cmd. 2009-02-08 13:02:56 +00:00
redirect.c Add win32/redirect.c, a tool spawning itself in a parent bin\ directory. 2007-07-08 13:08:49 +00:00
reset.sh Win32: Add initial support for compiling against AqBanking v3. 2008-09-30 21:50:11 +00:00

These scripts try to download and install a Windows/mingw32 build
environment for GnuCash on Windows. 

For cross-compiling the windows executable on Linux, see the lower
section of this file.

Before you start with the automated build, you have to complete these
steps manually. The directory variables are set in `defaults.sh' and optionally
`custom.sh'.

* Download MSYS (but *only* msys; no mingw and no msysdtk)
from http://www.mingw.org/download.shtml -> Current -> MSYS -> (bin, *.exe)
to $DOWNLOAD_DIR

* Install MSYS (no postinstall)
to $MSYS_DIR

* Download wget
from http://www.mingw.org/download.shtml -> Current -> mingwPORT -> (bin, wget-*)
to $DOWNLOAD_DIR

* Look at defaults.sh and create a file named custom.sh to specify adapted directory
  variables.  If you want verbose output of any script
  step, add "set -x" to that file.

* Either, download Qt from http://www.trolltech.com/developer/downloads/qt/windows,
  install it and set QTDIR in custom.sh, like "QTDIR=/c/Qt/4.2.3"; or skip building
  the AqBanking Setup Wizard by specifying "AQBANKING_WITH_QT=no".

Start/Enter any MSYS shell window. Let the automated build begin by:

  $INSTALLER_DIR/install.sh

Good luck!

To generate a self-installing setup.exe file that contains
*everything*, run the following command after install.sh has
completed:

  $INSTALLER_DIR/dist.sh

More information is collected on http://wiki.gnucash.org/wiki/Windows


--------------------------

Cross-compiling a Windows/mingw32 executable of GnuCash on a Linux
host system. (Note: This used to work unchangedly in Sept'2006 but
probably not any longer.)

These steps need to be performed:

1. Edit the file create_cross_mingw.sh and set the PREFIX= variable to
   the preferred prefix of the mingw32 gcc/binutils on your
   Linux. (It is strongly recommended to choose a different prefix
   than your normal compiler toolchain in order to distinguish
   your native vs. cross compiler more easily.) Then run the
   script create_cross_mingw.sh - it will
   download, compile, and install a mingw32 toolchain.

2. Edit the file defaults.sh: Make a global search-and-replace of
   '\\' into '/' so that all directories are specified in unix
   conventions. Set the variable cross_compile to "yes". Then
   adjust the directories in defaults.sh according to your
   preferred installation, especially $GLOBAL_DIR.

3. Download a binary windows packages for "guile" e.g. from
   http://www.tu-harburg.de/~et2cs/gnc/ and unpack it into the
   directory $GUILE_DIR as given in defaults.sh. (This is done because
   the build system for guile doesn't support cross-compiling.)

4. Call install.sh, which will read the directory settings from
   defaults.sh. It should download, compile, and install everything
   automatically. Eventually the windows gnucash is installed into
   $GNUCASH_DIR. 

5. The content of $GNUCASH_DIR (as well as all the other binary
   packages) should then be copied to a windows machine. The paths
   in $GNUCASH_DIR/bin/gnucash and/or $GNUCASH_DIR/bin/gnucash.cmd
   need to be adjusted for the installation location on the
   windows machine.

Good luck!