9b4e6ef7b3
Change-Id: Iff92a1f6a918f7da80f26f1a9ca02a6f6f082b7d
62 lines
1.9 KiB
Python
Executable file
62 lines
1.9 KiB
Python
Executable file
#!/usr/bin/python
|
|
# __________ __ ___.
|
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
# \/ \/ \/ \/ \/
|
|
# $Id$
|
|
#
|
|
# Copyright (c) 2010 Dominik Riebeling
|
|
#
|
|
# All files in this archive are subject to the GNU General Public License.
|
|
# See the file COPYING in the source tree root for full license agreement.
|
|
#
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
# KIND, either express or implied.
|
|
#
|
|
|
|
import deploy
|
|
|
|
deploy.program = "rbthemeeditor"
|
|
deploy.project = "utils/themeeditor/themeeditor.pro"
|
|
deploy.svnserver = "svn://svn.rockbox.org/rockbox/"
|
|
deploy.svnpaths = \
|
|
["utils/themeeditor/",
|
|
"lib/skin_parser/",
|
|
"docs/COPYING"]
|
|
deploy.useupx = False
|
|
deploy.bundlecopy = {
|
|
"resources/windowicon.icns" : "Contents/Resources/",
|
|
"Info.plist" : "Contents/"
|
|
}
|
|
deploy.progexe = {
|
|
"win32" : "release/rbthemeeditor.exe",
|
|
"darwin" : "rbthemeeditor.app",
|
|
"linux2" : "rbthemeeditor",
|
|
"linux" : "rbthemeeditor"
|
|
}
|
|
deploy.regreplace = {}
|
|
# OS X 10.6 defaults to gcc 4.2. Building universal binaries that are
|
|
# compatible with 10.4 requires using gcc-4.0.
|
|
deploy.qmakespec = {
|
|
"win32" : "",
|
|
"darwin" : "macx-g++40",
|
|
"linux2" : "",
|
|
"linux" : ""
|
|
}
|
|
deploy.make = {
|
|
"win32" : "mingw32-make",
|
|
"darwin" : "make",
|
|
"linux2" : "make",
|
|
"linux" : "make"
|
|
}
|
|
|
|
# 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.
|
|
# progexe will get added automatically.
|
|
deploy.programfiles = list()
|
|
deploy.nsisscript = "utils/themeeditor/themeeditor.nsi"
|
|
|
|
deploy.deploy()
|
|
|