diff options
Diffstat (limited to 'utils/common/deploy-themeeditor.py')
-rwxr-xr-x | utils/common/deploy-themeeditor.py | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/utils/common/deploy-themeeditor.py b/utils/common/deploy-themeeditor.py deleted file mode 100755 index a85317a426..0000000000 --- a/utils/common/deploy-themeeditor.py +++ /dev/null | |||
@@ -1,62 +0,0 @@ | |||
1 | #!/usr/bin/python | ||
2 | # __________ __ ___. | ||
3 | # Open \______ \ ____ ____ | | _\_ |__ _______ ___ | ||
4 | # Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / | ||
5 | # Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < | ||
6 | # Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ | ||
7 | # \/ \/ \/ \/ \/ | ||
8 | # $Id$ | ||
9 | # | ||
10 | # Copyright (c) 2010 Dominik Riebeling | ||
11 | # | ||
12 | # All files in this archive are subject to the GNU General Public License. | ||
13 | # See the file COPYING in the source tree root for full license agreement. | ||
14 | # | ||
15 | # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY | ||
16 | # KIND, either express or implied. | ||
17 | # | ||
18 | |||
19 | import deploy | ||
20 | |||
21 | deploy.program = "rbthemeeditor" | ||
22 | deploy.project = "utils/themeeditor/themeeditor.pro" | ||
23 | deploy.svnserver = "svn://svn.rockbox.org/rockbox/" | ||
24 | deploy.svnpaths = \ | ||
25 | ["utils/themeeditor/", | ||
26 | "lib/skin_parser/", | ||
27 | "docs/COPYING"] | ||
28 | deploy.useupx = False | ||
29 | deploy.bundlecopy = { | ||
30 | "resources/windowicon.icns" : "Contents/Resources/", | ||
31 | "Info.plist" : "Contents/" | ||
32 | } | ||
33 | deploy.progexe = { | ||
34 | "win32" : "release/rbthemeeditor.exe", | ||
35 | "darwin" : "rbthemeeditor.app", | ||
36 | "linux2" : "rbthemeeditor", | ||
37 | "linux" : "rbthemeeditor" | ||
38 | } | ||
39 | deploy.regreplace = {} | ||
40 | # OS X 10.6 defaults to gcc 4.2. Building universal binaries that are | ||
41 | # compatible with 10.4 requires using gcc-4.0. | ||
42 | deploy.qmakespec = { | ||
43 | "win32" : "", | ||
44 | "darwin" : "macx-g++40", | ||
45 | "linux2" : "", | ||
46 | "linux" : "" | ||
47 | } | ||
48 | deploy.make = { | ||
49 | "win32" : "mingw32-make", | ||
50 | "darwin" : "make", | ||
51 | "linux2" : "make", | ||
52 | "linux" : "make" | ||
53 | } | ||
54 | |||
55 | # all files of the program. Will get put into an archive after building | ||
56 | # (zip on w32, tar.bz2 on Linux). Does not apply on Mac which uses dmg. | ||
57 | # progexe will get added automatically. | ||
58 | deploy.programfiles = list() | ||
59 | deploy.nsisscript = "utils/themeeditor/themeeditor.nsi" | ||
60 | |||
61 | deploy.deploy() | ||
62 | |||