Skip to content

Commit

Permalink
Merge branch 'master' of [email protected]:phonegap/phonegap
Browse files Browse the repository at this point in the history
  • Loading branch information
Fil Maj committed Nov 27, 2009
2 parents 5c0d306 + 8ac7b32 commit 571787f
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 1 deletion.
2 changes: 1 addition & 1 deletion iphone/PhoneGapLib/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.1
0.8.2
72 changes: 72 additions & 0 deletions iphone/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
#!/bin/bash

# iPhone OS Device SDKs:
# Device - iPhone OS 2.2.1 -sdk iphoneos2.2.1
# Device - iPhone OS 3.0 -sdk iphoneos3.0
# Device - iPhone OS 3.1 -sdk iphoneos3.1
#
# iPhone OS Simulator SDKs:
# Simulator - iPhone OS 2.2.1 -sdk iphonesimulator2.2.1
# Simulator - iPhone OS 3.0 -sdk iphonesimulator3.0
# Simulator - iPhone OS 3.1 -sdk iphonesimulator3.1
#
# run 'xcodebuild -showsdks' to show the valid sdks on the system

current_sdk_version=3.0
xcodebuild="/usr/bin/xcodebuild"

# check whether the xcodebuild command exists
if [ ! -f $xcodebuild ]; then
echo "$xcodebuild not found."
exit
fi

# check whether it is a proper build command (at least two arguments, configuration and xcode_proj_folder)
if [ $# -lt 2 ]; then
echo "Usage: $0 <configuration> [target] <xcode_proj_folder>"
echo " <configuration>: typically 'debug' or 'release'"
echo " [target]: either 'device' or 'emulator' (optional)"
echo " <xcode_proj_folder>: the path to the folder containing your Xcode project file"
exit
fi

# First argument is the build configuration
configuration="$1"

# Second argument may be the emulator/device parameter if available (thus 3rd argument is the xcode project path).
# If not, it will be the path to folder containing the xcode project path
sdk=""
xcodeproj_folder=""
archs="armv6 armv7"

if [ $2 == "emulator" ]; then
sdk="-sdk iphonesimulator$current_sdk_version"
xcodeproj_folder=$3
archs="i386"
elif [ $2 == "device" ]; then
sdk="-sdk iphoneos$current_sdk_version"
xcodeproj_folder=$3
else
xcodeproj_folder=$2
fi

# the next lines will title-case the configuration value
configuration_len=${#configuration}
non_first_letter_substring="`echo ${configuration:1:configuration_len-1}|tr '[A-Z]' '[a-z]'`"
first_letter="`echo ${configuration:0:1}|tr '[a-z]' '[A-Z]'`"
configuration=$first_letter$non_first_letter_substring

# Check whether the xcode project path exists
if [ ! -d $xcodeproj_folder ]; then
echo "Path to xcode folder '$xcodeproj_folder' not found."
exit
fi

echo 'PhoneGap: building...'

# change to the project directory, and run the build
cd $xcodeproj_folder
echo $xcodebuild -alltargets -configuration $configuration $sdk
$xcodebuild -alltargets -configuration $configuration $sdk VALID_ARCHS="$archs"

echo 'PhoneGap: build done.'

0 comments on commit 571787f

Please sign in to comment.