193 lines
8.7 KiB
Python
193 lines
8.7 KiB
Python
#!/usr/bin/python
|
|
import lutinDebug as debug
|
|
import lutinTarget
|
|
import lutinTools
|
|
import os
|
|
import stat
|
|
import lutinExtProjectGeneratorXCode
|
|
|
|
class Target(lutinTarget.Target):
|
|
def __init__(self, typeCompilator, debugMode, generatePackage):
|
|
cross = ""
|
|
|
|
# http://biolpc22.york.ac.uk/pub/linux-mac-cross/
|
|
# http://devs.openttd.org/~truebrain/compile-farm/apple-darwin9.txt
|
|
lutinTarget.Target.__init__(self, "IOs", typeCompilator, debugMode, generatePackage, "", cross)
|
|
|
|
self.folder_bin=""
|
|
self.folder_lib="/lib"
|
|
self.folder_data="/Resources"
|
|
self.folder_doc="/doc"
|
|
|
|
self.suffix_lib_static='.a'
|
|
self.suffix_lib_dynamic='.dylib'
|
|
self.suffix_binary=''
|
|
self.suffix_package=''
|
|
|
|
self.sysroot = "-isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk"
|
|
|
|
self.global_flags_ld.append("-mios-simulator-version-min=7.0")
|
|
self.global_flags_cc.append("-mios-simulator-version-min=7.0")
|
|
|
|
#add a project generator:
|
|
self.externProjectManager = lutinExtProjectGeneratorXCode.ExtProjectGeneratorXCode()
|
|
|
|
|
|
def get_staging_folder(self, binaryName):
|
|
return lutinTools.get_run_folder() + self.folder_out + self.folder_staging + "/" + binaryName + ".app/"
|
|
|
|
def get_staging_folder_data(self, binaryName):
|
|
return self.get_staging_folder(binaryName) + self.folder_data + "/"
|
|
|
|
def make_package(self, pkgName, pkgProperties, basePkgPath):
|
|
debug.debug("------------------------------------------------------------------------")
|
|
debug.info("Generate package '" + pkgName + "'")
|
|
debug.debug("------------------------------------------------------------------------")
|
|
|
|
if "ICON" in pkgProperties.keys() \
|
|
and pkgProperties["ICON"] != "":
|
|
lutinTools.copy_file(pkgProperties["ICON"], self.get_staging_folder_data(pkgName) + "/icon.icns", True)
|
|
|
|
# http://www.sandroid.org/imcross/#Deployment
|
|
infoFile=self.get_staging_folder(pkgName) + "/Info.plist"
|
|
# Create the info file
|
|
tmpFile = open(infoFile, 'w')
|
|
tmpFile.write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n")
|
|
tmpFile.write("<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n")
|
|
tmpFile.write("<plist version=\"1.0\">\n")
|
|
tmpFile.write(" <dict>\n")
|
|
tmpFile.write(" <key>CFBundleDevelopmentRegion</key>\n")
|
|
tmpFile.write(" <string>en</string>\n")
|
|
tmpFile.write(" <key>CFBundleDisplayName</key>\n")
|
|
tmpFile.write(" <string>" + pkgProperties["NAME"] + "</string>\n")
|
|
tmpFile.write(" <key>CFBundleExecutable</key>\n")
|
|
tmpFile.write(" <string>" + pkgName + "</string>\n")
|
|
tmpFile.write(" <key>CFBundleIdentifier</key>\n")
|
|
tmpFile.write(" <string>com." + pkgProperties["COMPAGNY_NAME2"] + "." + pkgName + "</string>\n")
|
|
"""
|
|
tmpFile.write(" <key>CFBundleIconFile</key>\n")
|
|
tmpFile.write(" <string>icon.icns</string>\n")
|
|
"""
|
|
tmpFile.write(" <key>CFBundleInfoDictionaryVersion</key>\n")
|
|
tmpFile.write(" <string>6.0</string>\n")
|
|
tmpFile.write(" <key>CFBundleName</key>\n")
|
|
tmpFile.write(" <string>projectName</string>\n")
|
|
tmpFile.write(" <key>CFBundlePackageType</key>\n")
|
|
tmpFile.write(" <string>APPL</string>\n")
|
|
tmpFile.write(" <key>CFBundleShortVersionString</key>\n")
|
|
tmpFile.write(" <string>1.0</string>\n")
|
|
tmpFile.write(" <key>CFBundleSignature</key>\n")
|
|
tmpFile.write(" <string>????</string>\n")
|
|
"""
|
|
tmpFile.write(" <key>CFBundleSupportedPlatforms</key>\n")
|
|
tmpFile.write(" <array>\n")
|
|
tmpFile.write(" <string>iPhoneSimulator</string>\n")
|
|
tmpFile.write(" </array>\n")
|
|
tmpFile.write(" <key>CFBundleVersion</key>\n")
|
|
tmpFile.write(" <string>1.0</string>\n")
|
|
tmpFile.write(" <key>DTPlatformName</key>\n")
|
|
tmpFile.write(" <string>iphonesimulator</string>\n")
|
|
tmpFile.write(" <key>DTSDKName</key>\n")
|
|
tmpFile.write(" <string>iphonesimulator7.0</string>\n")
|
|
tmpFile.write(" <key>LSRequiresIPhoneOS</key>\n")
|
|
tmpFile.write(" <true/>\n")
|
|
tmpFile.write(" <key>UIDeviceFamily</key>\n")
|
|
tmpFile.write(" <array>\n")
|
|
tmpFile.write(" <integer>1</integer>\n")
|
|
tmpFile.write(" <integer>2</integer>\n")
|
|
tmpFile.write(" </array>\n")
|
|
"""
|
|
"""
|
|
tmpFile.write(" <key>UILaunchImages</key>\n")
|
|
tmpFile.write(" <array>\n")
|
|
tmpFile.write(" <dict>\n")
|
|
tmpFile.write(" <key>UILaunchImageMinimumOSVersion</key>\n")
|
|
tmpFile.write(" <string>7.0</string>\n")
|
|
tmpFile.write(" <key>UILaunchImageName</key>\n")
|
|
tmpFile.write(" <string>LaunchImage-700-568h</string>\n")
|
|
tmpFile.write(" <key>UILaunchImageOrientation</key>\n")
|
|
tmpFile.write(" <string>Portrait</string>\n")
|
|
tmpFile.write(" <key>UILaunchImageSize</key>\n")
|
|
tmpFile.write(" <string>{320, 568}</string>\n")
|
|
tmpFile.write(" </dict>\n")
|
|
tmpFile.write(" </array>\n")
|
|
"""
|
|
"""
|
|
tmpFile.write(" <key>UIMainStoryboardFile</key>\n")
|
|
tmpFile.write(" <string>Main_iPhone</string>\n")
|
|
tmpFile.write(" <key>UIMainStoryboardFile~ipad</key>\n")
|
|
tmpFile.write(" <string>Main_iPad</string>\n")
|
|
"""
|
|
"""
|
|
tmpFile.write(" <key>UIRequiredDeviceCapabilities</key>\n")
|
|
tmpFile.write(" <array>\n")
|
|
tmpFile.write(" <string>armv7</string>\n")
|
|
tmpFile.write(" </array>\n")
|
|
tmpFile.write(" <key>UIStatusBarHidden</key>\n")
|
|
tmpFile.write(" <true/>\n")
|
|
tmpFile.write(" <key>UISupportedInterfaceOrientations</key>\n")
|
|
tmpFile.write(" <array>\n")
|
|
tmpFile.write(" <string>UIInterfaceOrientationPortrait</string>\n")
|
|
tmpFile.write(" <string>UIInterfaceOrientationLandscapeLeft</string>\n")
|
|
tmpFile.write(" <string>UIInterfaceOrientationLandscapeRight</string>\n")
|
|
tmpFile.write(" </array>\n")
|
|
tmpFile.write(" <key>UISupportedInterfaceOrientations~ipad</key>\n")
|
|
tmpFile.write(" <array>\n")
|
|
tmpFile.write(" <string>UIInterfaceOrientationPortrait</string>\n")
|
|
tmpFile.write(" <string>UIInterfaceOrientationPortraitUpsideDown</string>\n")
|
|
tmpFile.write(" <string>UIInterfaceOrientationLandscapeLeft</string>\n")
|
|
tmpFile.write(" <string>UIInterfaceOrientationLandscapeRight</string>\n")
|
|
tmpFile.write(" </array>\n")
|
|
"""
|
|
tmpFile.write(" </dict>\n")
|
|
tmpFile.write("</plist>\n")
|
|
tmpFile.write("\n\n")
|
|
tmpFile.flush()
|
|
tmpFile.close()
|
|
"""
|
|
builtin-infoPlistUtility
|
|
/Users/edouarddupin/dev/exampleProjectXcode/projectName/projectName/projectName-Info.plist
|
|
-genpkginfo
|
|
/Users/edouarddupin/Library/Developer/Xcode/DerivedData/projectName-gwycnyyzohokcmalgodeucqppxro/Build/Products/Debug-iphonesimulator/projectName.app/PkgInfo
|
|
-expandbuildsettings
|
|
-format binary
|
|
-platform iphonesimulator
|
|
-additionalcontentfile /Users/edouarddupin/Library/Developer/Xcode/DerivedData/projectName-gwycnyyzohokcmalgodeucqppxro/Build/Intermediates/projectName.build/Debug-iphonesimulator/projectName.build/assetcatalog_generated_info.plist
|
|
-o /Users/edouarddupin/Library/Developer/Xcode/DerivedData/projectName-gwycnyyzohokcmalgodeucqppxro/Build/Products/Debug-iphonesimulator/projectName.app/Info.plist
|
|
"""
|
|
#/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/edouarddupin/Library/Developer/Xcode/DerivedData/projectName-gwycnyyzohokcmalgodeucqppxro/Build/Products/Debug-iphonesimulator/projectName.app/projectName -o /Users/edouarddupin/Library/Developer/Xcode/DerivedData/projectName-gwycnyyzohokcmalgodeucqppxro/Build/Products/Debug-iphonesimulator/projectName.app.dSYM
|
|
|
|
infoFile=self.get_staging_folder(pkgName) + "/PkgInfo"
|
|
# Create the info file
|
|
tmpFile = open(infoFile, 'w')
|
|
tmpFile.write("APPL????")
|
|
tmpFile.flush()
|
|
tmpFile.close()
|
|
# Simulateur folder :
|
|
#~/Library/Application\ Support/iPhone\ Simulator/7.0.3/Applications/
|
|
# must have a 'uuidgen' UID generate value with this elemennt ...
|
|
# get the bundle path : ==> maybe usefull in MocOS ...
|
|
# NSLog(@"%@",[[NSBundle mainBundle] bundlePath]);
|
|
|
|
# Must create the tarball of the application
|
|
#cd $(TARGET_OUT_FINAL)/; tar -cf $(PROJECT_NAME).tar $(PROJECT_NAME).app
|
|
#cd $(TARGET_OUT_FINAL)/; tar -czf $(PROJECT_NAME).tar.gz $(PROJECT_NAME).app
|
|
|
|
def install_package(self, pkgName):
|
|
debug.debug("------------------------------------------------------------------------")
|
|
debug.info("Install package '" + pkgName + "'")
|
|
debug.debug("------------------------------------------------------------------------")
|
|
debug.warning(" ==> TODO")
|
|
#sudo dpkg -i $(TARGET_OUT_FINAL)/$(PROJECT_NAME) + self.suffix_package
|
|
|
|
def un_install_package(self, pkgName):
|
|
debug.debug("------------------------------------------------------------------------")
|
|
debug.info("Un-Install package '" + pkgName + "'")
|
|
debug.debug("------------------------------------------------------------------------")
|
|
debug.warning(" ==> TODO")
|
|
#sudo dpkg -r $(TARGET_OUT_FINAL)/$(PROJECT_NAME) + self.suffix_package
|
|
|
|
|
|
|
|
|