bump sparkle 2.1.0

This commit is contained in:
Kelvin Sherlock 2022-02-26 18:45:17 -05:00
parent 79c3eba93e
commit 9bb0cc468a
1 changed files with 10 additions and 1 deletions

View File

@ -1,7 +1,7 @@
#!/bin/sh
VERSION=2.0.0
VERSION=2.1.0
TAR=Sparkle-${VERSION}.tar.xz
URL=https://github.com/sparkle-project/Sparkle/releases/download/${VERSION}/Sparkle-${VERSION}.tar.xz
FRAMEWORK=Sparkle.framework
@ -16,3 +16,12 @@ if [ ! -e $FRAMEWORK ] ; then tar xfz ../$TAR ; fi
cd ..
ditto Sparkle-${VERSION}/$FRAMEWORK $FRAMEWORK
# older version of xcode need a Versions/A directory
SW_VERSION=`sw_vers -productVersion`
case $SW_VERSION in
10.14|10.14.*)
if [ ! -e $FRAMEWORK/Versions/A ] ; then ln -s B $FRAMEWORK/Versions/A ; fi
esac