From 9adabadeb9e31807c31a76b64ae4236ca24ee3fc Mon Sep 17 00:00:00 2001 From: meeh Date: Thu, 2 May 2019 23:12:54 +0000 Subject: [PATCH] Mac OSX Launcher: shell script for downloading and building Sparkle. --- launchers/macosx/download_and_build_sparkle.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 launchers/macosx/download_and_build_sparkle.sh diff --git a/launchers/macosx/download_and_build_sparkle.sh b/launchers/macosx/download_and_build_sparkle.sh new file mode 100755 index 0000000000..e4e667151c --- /dev/null +++ b/launchers/macosx/download_and_build_sparkle.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +git clone --recursive https://github.com/sparkle-project/Sparkle.git +cd Sparkle +git checkout 1.21.3 +xcodebuild -project Sparkle.xcodeproj -configuration Release -target All ARCHS=x86_64 ONLY_ACTIVE_ARCH=YES CONFIGURATION_BUILD_DIR=build clean +xcodebuild -project Sparkle.xcodeproj -configuration Release -target All ARCHS=x86_64 ONLY_ACTIVE_ARCH=YES CONFIGURATION_BUILD_DIR=build + +