forked from iCepa/Tor.framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnyoneKit.podspec
More file actions
39 lines (28 loc) · 1.47 KB
/
AnyoneKit.podspec
File metadata and controls
39 lines (28 loc) · 1.47 KB
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
Pod::Spec.new do |m|
m.name = 'AnyoneKit'
m.version = '409.13.1'
m.summary = 'AnyoneKit is the easiest way to embed the Anyone network in your iOS and macOS application.'
m.description = 'AnyoneKit is the easiest way to embed the Anyone network in your iOS and macOS application. Currently, the framework compiles in static versions of anon, libevent, openssl, and liblzma.'
m.homepage = 'https://github.com/anyone-protocol/AnyoneKit'
m.license = { :type => 'MIT', :file => 'LICENSE' }
m.authors = { 'Benjamin Erhart' => 'berhart@netzarchitekten.com', }
m.source = {
:git => 'https://github.com/anyone-protocol/AnyoneKit.git',
:branch => 'main',
:tag => "v#{m.version}" }
m.social_media_url = 'https://chaos.social/@tla'
m.ios.deployment_target = '15.0'
m.macos.deployment_target = '11.0'
m.requires_arc = true
m.source_files = 'AnyoneKit/Classes/**/*'
m.resource_bundles = {
'GeoIP' => ['AnyoneKit/Assets/geoip', 'AnyoneKit/Assets/geoip6']
}
m.vendored_frameworks = 'anon.xcframework'
m.libraries = 'z'
m.pod_target_xcconfig = {
'HEADER_SEARCH_PATHS' => '$(inherited) "${PODS_TARGET_SRCROOT}/anon.xcframework/ios-arm64/anon.framework/Headers"'
}
m.preserve_paths = 'build-xcframework.sh', 'anon.xcframework', 'AnyoneKit/download.sh'
m.prepare_command = "AnyoneKit/download.sh v#{m.version} 5472dc8c06312eaf7b08978634f2c3a98881bdd90baac06fed0b797d032e440f"
end