Application to generate installers for Linux, Windows and MacOSX from a single configuration
- 阅读更多 关于 Application to generate installers for Linux, Windows and MacOSX from a single configuration
Here's what I want: Given a set of definitions (preferably in Python) on what files to install where and what post-install script to run, etc.. I would like this program to generate installers for the three major platforms: MSI on Windows dmg on MacOSX Tarball w/ install.sh (and rpm/deb, if possible) on Linux For example, installconfig.py: name = 'Foo' version = '1.0' components = { 'core': {'recursive-include': 'image/' 'target_dir': '$APPDIR'} 'plugins': {'recursive-include': 'contrib/plugins', 'target_dir': '$APPDIR/plugins'} } def post_install(): ... And I want this program to generate Foo