We have a 3.9 release, update builds.pm
[maemo-rb.git] / utils / common / deploy-themeeditor.py
blob8b66e5aef4225d18a82c147f08de36219a9bc84f
1 #!/usr/bin/python
2 # __________ __ ___.
3 # Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 # Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 # Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 # Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 # \/ \/ \/ \/ \/
8 # $Id$
10 # Copyright (c) 2010 Dominik Riebeling
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.
15 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 # KIND, either express or implied.
19 import deploy
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/"
33 deploy.progexe = {
34 "win32" : "release/rbthemeeditor.exe",
35 "darwin" : "rbthemeeditor.app",
36 "linux2" : "rbthemeeditor"
38 deploy.regreplace = {}
39 # OS X 10.6 defaults to gcc 4.2. Building universal binaries that are
40 # compatible with 10.4 requires using gcc-4.0.
41 deploy.qmakespec = {
42 "win32" : "",
43 "darwin" : "macx-g++40",
44 "linux2" : ""
46 deploy.make = {
47 "win32" : "mingw32-make",
48 "darwin" : "make",
49 "linux2" : "make"
52 # all files of the program. Will get put into an archive after building
53 # (zip on w32, tar.bz2 on Linux). Does not apply on Mac which uses dmg.
54 # progexe will get added automatically.
55 deploy.programfiles = [ ]
56 deploy.nsisscript = "utils/themeeditor/themeeditor.nsi"
58 deploy.deploy()