forked from apache/cordova-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate_podspec.sh
executable file
·70 lines (60 loc) · 2.1 KB
/
update_podspec.sh
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
set -e
SUBSPEC_NAME=""
function usage()
{
local appName=`basename $0`
echo "Usage:"
echo "$appName -s <Subspec Name>"
}
function parseOpts()
{
while getopts :s: commandLineOpt; do
case ${commandLineOpt} in
s)
SUBSPEC_NAME=${OPTARG};;
?)
echo "Unknown option '-${OPTARG}'."
usage
exit 1
esac
done
# Validate that we got the required command line arg(s).
if [ "${SUBSPEC_NAME}" == "" ]; then
echo "No option specified for Subspec Name."
usage
exit 2
fi
}
parseOpts "$@"
repoDir=$(cd "$(dirname ${BASH_SOURCE[0]})" && pwd)
publicHeaderDirectory="${TARGET_BUILD_DIR}/${PUBLIC_HEADERS_FOLDER_PATH}"
podSpecFile="${repoDir}/Cordova.podspec"
projectDir=`echo "${PROJECT_DIR}" | sed "s#${repoDir}/##g"`
cd "$repoDir"
# Create the public header file list out of the public headers in the build folder.
publicHeaderFileList=""
isFirstFile=1
for headerFile in `ls -1 "${publicHeaderDirectory}"`; do
repoHeaderFile=`find ${projectDir} -name $headerFile`
if [ "$repoHeaderFile" != "" ]; then
if [ $isFirstFile -eq 1 ]; then
publicHeaderFileList="'$repoHeaderFile'"
isFirstFile=0
else
publicHeaderFileList=`echo "${publicHeaderFileList}, '$repoHeaderFile'"`
fi
fi
done
# Make sure none of the public header files are in the exclude files list
if grep -q "${SUBSPEC_NAME}.exclude_files" ${podSpecFile}
then
echo "${publicHeaderFileList}" | sed 's/ *//g' | tr , '\n' | sort > "${podSpecFile}.public_header_files_list"
cat "${podSpecFile}" | grep "${SUBSPEC_NAME}.exclude_files" | sed 's/.*=//' | sed 's/ *//g' | tr , '\n' | sort > "${podSpecFile}.exclude_files_list"
publicHeaderFileList=`comm -23 ${podSpecFile}.public_header_files_list ${podSpecFile}.exclude_files_list | tr '\n' , | sed 's/,$//'`
rm "${podSpecFile}.public_header_files_list" "${podSpecFile}.exclude_files_list"
fi
# Replace the old headers with the new ones.
searchPattern='^( *'"${SUBSPEC_NAME}"'\.public_header_files = ).*$'
replacementPattern='\1'"${publicHeaderFileList}"
sed -E "s#$searchPattern#$replacementPattern#g" "$podSpecFile" > "${podSpecFile}.new"
mv "${podSpecFile}.new" "${podSpecFile}"