forked from aNNiMON/Lightweight-Stream-API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlightweight-stream-api.podspec
More file actions
27 lines (23 loc) · 946 Bytes
/
lightweight-stream-api.podspec
File metadata and controls
27 lines (23 loc) · 946 Bytes
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
Pod::Spec.new do |s|
s.name = 'lightweight-stream-api'
s.version = '1.2.26-SNAPSHOT'
s.license = { :type => 'PRIVATE', :text => 'PRIVATE' }
s.summary = 'Stream api port to Java 7.'
s.homepage = 'http://www.mirego.com'
s.authors = { 'Mirego, Inc.' => 'info@mirego.com' }
s.source = { :git => 'git@github.com:mirego/Lightweight-Stream-API.git', :tag => 'lightweight-stream-' + s.version.to_s }
s.requires_arc = false
s.prepare_command = <<-CMD
export ANDROID_HOME="${ANDROID_HOME:-$HOME/Library/Android/sdk}"
export J2OBJC_VERSION="${J2OBJC_VERSION:-1.0.0.2}"
./gradlew j2objc_pod
CMD
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.6'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.source_files = 'stream-j2objc/**/*.{h,m}'
s.header_mappings_dir = 'stream-j2objc'
s.dependency 'J2ObjC@mirego', '>= 1.0.0.2'
s.dependency 'J2ObjC@mirego/jsr305'
end