forked from dictav/msgpack-objectivec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMessagePack.podspec
More file actions
25 lines (19 loc) · 820 Bytes
/
MessagePack.podspec
File metadata and controls
25 lines (19 loc) · 820 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
Pod::Spec.new do |s|
s.name = "MessagePack"
s.version = "0.2.1"
s.summary = "MessagePack"
s.description = <<-DESC
MessagePack with some additions to make push packing
DESC
s.homepage = "http://github.com/GoodWorkApps/msgpack-objectivec"
s.license = { :type => 'Apache', :file => 'readme.md' }
s.author = { "egv" => "g@goodworkapps.com" }
s.social_media_url = "http://twitter.com/gevstratov"
s.source = { :git => "https://github.com/GoodWorkApps/msgpack-objectivec.git", :tag => "0.2.1" }
s.source_files = ['MessagePack/*.{h,m}', 'msgpack_src/*', 'msgpack_src/msgpack/*']
s.header_mappings_dir = 'msgpack'
s.xcconfig = {
'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/MessagePack/msgpack_src"'
}
s.requires_arc = true
end