mirror of https://github.com/procxx/kepka.git
Update build scripts for Xcode 11 tools.
This commit is contained in:
parent
82aa64ca0a
commit
2f698de3b6
|
@ -289,7 +289,7 @@ if [ "$BuildTarget" == "mac" ] || [ "$BuildTarget" == "osx" ] || [ "$BuildTarget
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Dumping debug symbols.."
|
echo "Dumping debug symbols.."
|
||||||
"$HomePath/../../Libraries/breakpad/src/tools/mac/dump_syms/build/Release/dump_syms" "$ReleasePath/$BinaryName.app.dSYM" > "$ReleasePath/$BinaryName.sym" 2>/dev/null
|
"$HomePath/../../Libraries/macos/breakpad/src/tools/mac/dump_syms/build/Release/dump_syms" "$ReleasePath/$BinaryName.app.dSYM" > "$ReleasePath/$BinaryName.sym" 2>/dev/null
|
||||||
echo "Done!"
|
echo "Done!"
|
||||||
|
|
||||||
echo "Stripping the executable.."
|
echo "Stripping the executable.."
|
||||||
|
@ -378,7 +378,7 @@ if [ "$BuildTarget" == "mac" ] || [ "$BuildTarget" == "osx" ] || [ "$BuildTarget
|
||||||
if [ "$BuildTarget" == "mac" ]; then
|
if [ "$BuildTarget" == "mac" ]; then
|
||||||
echo "Beginning notarization process."
|
echo "Beginning notarization process."
|
||||||
set +e
|
set +e
|
||||||
xcrun altool --notarize-app --primary-bundle-id "com.tdesktop.Telegram" --username "$AC_USERNAME" --password "@keychain:AC_PASSWORD" --file "$SetupFile" 2> request_uuid.txt
|
xcrun altool --notarize-app --primary-bundle-id "com.tdesktop.Telegram" --username "$AC_USERNAME" --password "@keychain:AC_PASSWORD" --file "$SetupFile" > request_uuid.txt
|
||||||
set -e
|
set -e
|
||||||
while IFS='' read -r line || [[ -n "$line" ]]; do
|
while IFS='' read -r line || [[ -n "$line" ]]; do
|
||||||
Prefix=$(echo $line | cut -d' ' -f 1)
|
Prefix=$(echo $line | cut -d' ' -f 1)
|
||||||
|
@ -398,7 +398,7 @@ if [ "$BuildTarget" == "mac" ] || [ "$BuildTarget" == "osx" ] || [ "$BuildTarget
|
||||||
LogFile=
|
LogFile=
|
||||||
while [[ "$RequestStatus" == "" ]]; do
|
while [[ "$RequestStatus" == "" ]]; do
|
||||||
sleep 5
|
sleep 5
|
||||||
xcrun altool --notarization-info "$RequestUUID" --username "$AC_USERNAME" --password "@keychain:AC_PASSWORD" 2> request_result.txt
|
xcrun altool --notarization-info "$RequestUUID" --username "$AC_USERNAME" --password "@keychain:AC_PASSWORD" > request_result.txt
|
||||||
while IFS='' read -r line || [[ -n "$line" ]]; do
|
while IFS='' read -r line || [[ -n "$line" ]]; do
|
||||||
Prefix=$(echo $line | cut -d' ' -f 1)
|
Prefix=$(echo $line | cut -d' ' -f 1)
|
||||||
Value=$(echo $line | cut -d' ' -f 2)
|
Value=$(echo $line | cut -d' ' -f 2)
|
||||||
|
|
|
@ -207,7 +207,7 @@ Go to ***BuildPath*** and run
|
||||||
cd openal-soft
|
cd openal-soft
|
||||||
git checkout v1.19
|
git checkout v1.19
|
||||||
cd build
|
cd build
|
||||||
CFLAGS='-Werror=unguarded-availability-new' CPPFLAGS='-Werror=unguarded-availability-new' cmake -D -D ALSOFT_EXAMPLES=OFF -D LIBTYPE:STRING=STATIC -D CMAKE_OSX_DEPLOYMENT_TARGET:STRING=10.10 ..
|
CFLAGS='-Werror=unguarded-availability-new' CPPFLAGS='-Werror=unguarded-availability-new' cmake -D ALSOFT_EXAMPLES=OFF -D LIBTYPE:STRING=STATIC -D CMAKE_OSX_DEPLOYMENT_TARGET:STRING=10.10 ..
|
||||||
make $MAKE_THREADS_CNT
|
make $MAKE_THREADS_CNT
|
||||||
sudo make install
|
sudo make install
|
||||||
cd ../..
|
cd ../..
|
||||||
|
|
Loading…
Reference in New Issue