Last active
August 29, 2015 14:15
-
-
Save Pitometsu/e997c559258ba10b3482 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -e | |
mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" | |
RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt | |
> "$RESOURCES_TO_COPY" | |
install_resource() | |
{ | |
case $1 in | |
*.storyboard) | |
echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" | |
ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" | |
;; | |
*.xib) | |
echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" | |
ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" | |
;; | |
*.framework) | |
echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" | |
mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" | |
echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" | |
rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" | |
;; | |
*.xcdatamodel) | |
echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" | |
xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" | |
;; | |
*.xcdatamodeld) | |
echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" | |
xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" | |
;; | |
*.xcmappingmodel) | |
echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" | |
xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" | |
;; | |
*.xcassets) | |
;; | |
/*) | |
echo "$1" | |
echo "$1" >> "$RESOURCES_TO_COPY" | |
;; | |
*) | |
echo "${PODS_ROOT}/$1" | |
echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" | |
;; | |
esac | |
} | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/cruiser_icn_activity_chrome@2x~ipad.png" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/cruiser_icn_activity_dolphin@2x~ipad.png" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/cruiser_icn_activity_link@2x~ipad.png" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/cruiser_icn_activity_opera@2x~ipad.png" | |
install_resource "CruiserWebViewController/Source/Resources/cruiser_icn_activity_safari@2x~ipad.png" | |
install_resource "CruiserWebViewController/Source/Resources/cruiser_icn_toolbar_action.png" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/cruiser_icn_toolbar_backward.png" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/cruiser_icn_toolbar_down.png" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/cruiser_icn_toolbar_face.png" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/cruiser_icn_toolbar_forward.png" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/cruiser_icn_toolbar_pin.png" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/cruiser_icn_toolbar_reload.png" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/cruiser_icn_toolbar_stop.png" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/cruiser_icn_toolbar_up.png" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/cruiser_icn_toolbar_web.png" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/[email protected]" | |
install_resource "CruiserWebViewController/Source/Resources/de.lproj" | |
install_resource "CruiserWebViewController/Source/Resources/en.lproj" | |
install_resource "CruiserWebViewController/Source/Resources/es.lproj" | |
install_resource "IPSqueezableViewController/Resources/backButton.png" | |
install_resource "IPSqueezableViewController/Resources/[email protected]" | |
install_resource "IPSqueezableViewController/Resources/invisibleBackButton.png" | |
install_resource "IPSqueezableViewController/Resources/[email protected]" | |
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" | |
if [[ "${ACTION}" == "install" ]]; then | |
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" | |
fi | |
rm -f "$RESOURCES_TO_COPY" | |
if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ `find . -name '*.xcassets' | wc -l` -ne 0 ] | |
then | |
case "${TARGETED_DEVICE_FAMILY}" in | |
1,2) | |
TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" | |
;; | |
1) | |
TARGET_DEVICE_ARGS="--target-device iphone" | |
;; | |
2) | |
TARGET_DEVICE_ARGS="--target-device ipad" | |
;; | |
*) | |
TARGET_DEVICE_ARGS="--target-device mac" | |
;; | |
esac | |
find "${PWD}" -name "*.xcassets" -print0 | xargs -0 actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment