[Haskell-cafe] Distributing Haskell GUI apps for Windows/MacOS?

2011-06-07 Thread Pedro Vasconcelos
Hello, I've implemented a Haskell program to play a modern board game. I've put it on Hackage (http://hackage.haskell.org/package/hstzaar) but would also like to distribute to people without the Haskell development tools. Are there any easy ways of making installers for Windows/MacOS

Re: [Haskell-cafe] Distributing Haskell GUI apps for Windows/MacOS?

2011-06-07 Thread Mats Rauhala
There is bamse [1], but it's last been updated in 2009, and has build-failures for 6.10, 6.12 and 7.0. It has some dependency weirdness, like wanting both base = 4 and 4. I don't know how difficult it would be to upgrade it to modern haskell, but I'm sure the changes would be appreciated. [1]

Re: [Haskell-cafe] Distributing Haskell GUI apps for Windows/MacOS?

2011-06-07 Thread Eric Kow
On Tue, Jun 07, 2011 at 11:58:52 +0100, Pedro Vasconcelos wrote: Are there any easy ways of making installers for Windows/MacOS (preferably using free or open source tools)? On MacOS X, applications typically do not come with installers. Instead you have some kind of disk image (a tarball will

Re: [Haskell-cafe] Distributing Haskell GUI apps for Windows/MacOS?

2011-06-07 Thread Henk-Jan van Tuyl
On Tue, 07 Jun 2011 12:58:52 +0200, Pedro Vasconcelos p...@dcc.fc.up.pt wrote: Hello, I've implemented a Haskell program to play a modern board game. I've put it on Hackage (http://hackage.haskell.org/package/hstzaar) but would also like to distribute to people without the Haskell