-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwiftyCurl.podspec
42 lines (33 loc) · 1.42 KB
/
SwiftyCurl.podspec
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
#
# Be sure to run `pod lib lint SwiftyCurl.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'SwiftyCurl'
s.version = '0.4.1'
s.summary = 'A Swift and Objective-C wrapper for libcurl.'
s.description = <<-DESC
SwiftyCurl is an easily usable Swift and Objective-C wrapper for libcurl.
DESC
s.homepage = 'https://github.com/greatfire/SwiftyCurl'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Benjamin Erhart' => '[email protected]' }
s.source = { :git => 'https://github.com/greatfire/SwiftyCurl.git', :tag => s.version.to_s }
s.social_media_url = 'https://chaos.social/@tla'
s.ios.deployment_target = '12.0'
s.macos.deployment_target = '12.0'
s.source_files = 'Sources/SwiftyCurl/**/*'
s.private_header_files = 'Sources/SwiftyCurl/Private/**/*.h'
s.vendored_frameworks = 'curl.xcframework'
s.resource_bundles = {
'certs' => ['curl.xcframework/ios-arm64/curl.framework/Resources/cacert.pem']
}
s.libraries = 'z'
s.macos.libraries = 'ldap'
s.macos.frameworks = 'SystemConfiguration'
s.prepare_command = 'Sources/download-curl.sh'
s.preserve_path = 'Sources/download-curl.sh'
end