forked from JohnCoates/Aerial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
31 lines (23 loc) · 995 Bytes
/
Podfile
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
# Uncomment the next line to define a global platform for your project
platform :macos, '10.9'
target 'Aerial' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for Aerial
pod 'Sparkle'
target 'Aerial Tests' do
inherit! :search_paths
# Pods for testing
end
end
target 'AerialApp' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for AerialApp
pod 'Sparkle'
end
post_install do |installer|
# Sign the Sparkle helper binaries to pass App Notarization.
system("codesign --force -o runtime -s 'Developer ID Application: Guillaume Louel (3L54M5L5KK)' Pods/Sparkle/Sparkle.framework/Resources/Autoupdate.app/Contents/MacOS/Autoupdate")
system("codesign --force -o runtime -s 'Developer ID Application: Guillaume Louel (3L54M5L5KK)' Pods/Sparkle/Sparkle.framework/Resources/Autoupdate.app/Contents/MacOS/fileop")
end