forked from libgit2/libgit2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibgit2.podspec
More file actions
15 lines (15 loc) · 762 Bytes
/
libgit2.podspec
File metadata and controls
15 lines (15 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = "libgit2"
s.version = "0.18.0beta0"
s.summary = "The libgit2 Library."
s.homepage = "http://libgit2.github.com"
s.license = { :type => 'GPL v2 (with linking exception)', :file => 'COPYING' }
s.author = 'See AUTHORS file'
s.source = { :git => "https://github.com/fleitz/libgit2.git" }
s.source_files = 'deps/http-parser/*.{h,c}', 'src/**/*.{h,c}', 'include/**/*.h'
s.exclude_files = '**/include/git2/inttypes.h', '**/include/git2/stdint.h', '**/src/win32/**', '**/hash_win32.*'
s.public_header_files = 'include/**/*.h'
s.preserve_paths = 'Authors'
s.libraries = 'z'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(PODS_ROOT)/libgit2/include $(PODS_ROOT)/libgit2/src' }
end