From 93c81dcd26c1f9b6099c36256d6f63539b33b85b Mon Sep 17 00:00:00 2001 From: Dominik Riebeling Date: Sun, 8 Aug 2010 20:56:58 +0000 Subject: Support running NSIS from deployment script. This requires a few workarounds since NSIS expects files in the source folder but the build scripts run out-of-tree. Only added for Theme Editor for now, since Rockbox Utility doesn't have a NSIS script yet (and an installer for Rockbox Utility might not be that useful). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27759 a1c6a512-1295-4272-9138-f99709370657 --- utils/common/deploy-themeeditor.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'utils/common/deploy-themeeditor.py') diff --git a/utils/common/deploy-themeeditor.py b/utils/common/deploy-themeeditor.py index 527976616c..566c04d68d 100755 --- a/utils/common/deploy-themeeditor.py +++ b/utils/common/deploy-themeeditor.py @@ -24,7 +24,8 @@ deploy.project = "utils/themeeditor/themeeditor.pro" deploy.svnserver = "svn://svn.rockbox.org/rockbox/" deploy.svnpaths = \ [ "utils/themeeditor/", - "lib/skin_parser/" ] + "lib/skin_parser/", + "docs/COPYING" ] deploy.useupx = False deploy.bundlecopy = { "resources/windowicon.icns" : "Contents/Resources/", @@ -46,6 +47,8 @@ else: # all files of the program. Will get put into an archive after building # (zip on w32, tar.bz2 on Linux). Does not apply on Mac which uses dmg. deploy.programfiles = [ deploy.progexe ] +deploy.nsisscript = "utils/themeeditor/themeeditor.nsi" +deploy.nsissetup = "utils/themeeditor/rbthemeeditor-setup.exe" deploy.deploy() -- cgit v1.2.3