58 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
cd "${BASH_SOURCE%/*}"
 | 
						|
source ./bashlib
 | 
						|
trap 'echo >&2 "ERROR: $?: $BASH_COMMAND"' ERR
 | 
						|
set -e
 | 
						|
cd ..
 | 
						|
export PATH+=:/usr/libexec
 | 
						|
 | 
						|
addPlistWithKey() {
 | 
						|
    local key=$1 type=$2 value=$3 plist=${4:-"$BUILT_PRODUCTS_DIR/$INFOPLIST_PATH"}
 | 
						|
    
 | 
						|
    PlistBuddy -c "Delete :'$key'" "$plist" 2>/dev/null || true
 | 
						|
    PlistBuddy -c "Add :'$key' '$type' '$value'" "$plist"
 | 
						|
}
 | 
						|
setPlistWithKey() {
 | 
						|
    local key=$1 value=$2 plist=${3:-"$BUILT_PRODUCTS_DIR/$INFOPLIST_PATH"}
 | 
						|
    
 | 
						|
    PlistBuddy -c "Set :'$key' '$value'" "$plist"
 | 
						|
}
 | 
						|
getPlistWithKey() {
 | 
						|
    local key=$1 plist=${2:-"$BUILT_PRODUCTS_DIR/$INFOPLIST_PATH"}
 | 
						|
    
 | 
						|
    PlistBuddy -c "Print :'$key'" "$plist"
 | 
						|
}
 | 
						|
setSettingWithTitle() {
 | 
						|
    local i title=$1 value=$2 plist=${3:-"$BUILT_PRODUCTS_DIR/$CONTENTS_FOLDER_PATH/Settings.bundle/Root.plist"}
 | 
						|
    
 | 
						|
    for (( i=0; 1; ++i )); do
 | 
						|
        PlistBuddy -c "Print :PreferenceSpecifiers:$i" "$plist" &>/dev/null || break
 | 
						|
        inf "Checking preference specifier $i"
 | 
						|
    
 | 
						|
        [[ $(PlistBuddy -c "Print :PreferenceSpecifiers:$i:Title" "$plist" 2>/dev/null) = $title ]] || continue
 | 
						|
    
 | 
						|
        inf "Correct title, setting value."
 | 
						|
        PlistBuddy -c "Set :PreferenceSpecifiers:$i:DefaultValue $value" "$plist"
 | 
						|
        break
 | 
						|
    done
 | 
						|
}
 | 
						|
 | 
						|
case $PLATFORM_NAME in
 | 
						|
    macosx) platform=mac ;;
 | 
						|
    iphone*)    platform=ios ;;
 | 
						|
    *)      ftl 'ERROR: Unknown platform: %s.' "$PLATFORM_NAME"; exit 1 ;;
 | 
						|
esac
 | 
						|
 | 
						|
description=$(git describe --always --dirty --long --match "*-$platform*")
 | 
						|
version=${description%-g*} build=${version##*-} version=${version%-$build}
 | 
						|
version=${version//-$platform/} version=${version//-/.} commit=${description##*-g}
 | 
						|
IFS=. read major minor build <<< "$version"
 | 
						|
 | 
						|
addPlistWithKey GITDescription string "$description"
 | 
						|
setPlistWithKey CFBundleVersion "$(hr "$major" 14)$(printf '%02d' "$minor")$(printf '%02d' "$build")"
 | 
						|
setPlistWithKey CFBundleShortVersionString "$version"
 | 
						|
 | 
						|
setSettingWithTitle "Build" "$commit"
 | 
						|
setSettingWithTitle "Version" "$version"
 | 
						|
setSettingWithTitle "Copyright" "$(getPlistWithKey NSHumanReadableCopyright)"
 |