Blame view

LifeLog/Pods/Target Support Files/Pods-LifeLog/Pods-LifeLog-frameworks.sh 3.98 KB
77358f2e0   phong   add project lifelog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
  #!/bin/sh
  set -e
  
  echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
  mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
  
  SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}"
  
  install_framework()
  {
    if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then
      local source="${BUILT_PRODUCTS_DIR}/$1"
    elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then
      local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")"
    elif [ -r "$1" ]; then
      local source="$1"
    fi
  
    local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
  
    if [ -L "${source}" ]; then
        echo "Symlinked..."
        source="$(readlink "${source}")"
    fi
  
    # use filter instead of exclude so missing patterns dont' throw errors
    echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\""
    rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}"
  
    local basename
    basename="$(basename -s .framework "$1")"
    binary="${destination}/${basename}.framework/${basename}"
    if ! [ -r "$binary" ]; then
      binary="${destination}/${basename}"
    fi
  
    # Strip invalid architectures so "fat" simulator / device frameworks work on device
    if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then
      strip_invalid_archs "$binary"
    fi
  
    # Resign the code if required by the build settings to avoid unstable apps
    code_sign_if_enabled "${destination}/$(basename "$1")"
  
    # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7.
    if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then
      local swift_runtime_libs
      swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u  && exit ${PIPESTATUS[0]})
      for lib in $swift_runtime_libs; do
        echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\""
        rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}"
        code_sign_if_enabled "${destination}/${lib}"
      done
    fi
  }
  
  # Signs a framework with the provided identity
  code_sign_if_enabled() {
    if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then
      # Use the current code_sign_identitiy
      echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}"
      echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\""
      /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1"
    fi
  }
  
  # Strip invalid architectures
  strip_invalid_archs() {
    binary="$1"
    # Get architectures for current file
    archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)"
    stripped=""
    for arch in $archs; do
      if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then
        # Strip non-valid architectures in-place
        lipo -remove "$arch" -output "$binary" "$binary" || exit 1
        stripped="$stripped $arch"
      fi
    done
    if [[ "$stripped" ]]; then
      echo "Stripped $binary of architectures:$stripped"
    fi
  }
  
  
  if [[ "$CONFIGURATION" == "Debug" ]]; then
c7e5758a7   phong   fix bug build and...
87
    install_framework "$BUILT_PRODUCTS_DIR/Charts/Charts.framework"
77358f2e0   phong   add project lifelog
88
    install_framework "$BUILT_PRODUCTS_DIR/CircleProgressBar/CircleProgressBar.framework"
c7e5758a7   phong   fix bug build and...
89
    install_framework "$BUILT_PRODUCTS_DIR/LineKit/LineKit.framework"
77358f2e0   phong   add project lifelog
90
91
92
    install_framework "$BUILT_PRODUCTS_DIR/MBProgressHUD/MBProgressHUD.framework"
  fi
  if [[ "$CONFIGURATION" == "Release" ]]; then
c7e5758a7   phong   fix bug build and...
93
    install_framework "$BUILT_PRODUCTS_DIR/Charts/Charts.framework"
77358f2e0   phong   add project lifelog
94
    install_framework "$BUILT_PRODUCTS_DIR/CircleProgressBar/CircleProgressBar.framework"
c7e5758a7   phong   fix bug build and...
95
    install_framework "$BUILT_PRODUCTS_DIR/LineKit/LineKit.framework"
77358f2e0   phong   add project lifelog
96
97
    install_framework "$BUILT_PRODUCTS_DIR/MBProgressHUD/MBProgressHUD.framework"
  fi