26 lines
1.0 KiB
Ruby
26 lines
1.0 KiB
Ruby
Pod::Spec.new do |s|
|
|
s.name = "ObjectiveGit"
|
|
s.version = "0.1"
|
|
s.summary = "Objective-C bindings to libgit2."
|
|
s.homepage = "https://github.com/libgit2/objective-git"
|
|
s.license = 'MIT'
|
|
s.author = { "Tim Clem" => "timothy.clem@gmail.com", "Josh Abernathy" => "josh@github.com" }
|
|
s.source = { :git => "https://github.com/libgit2/objective-git.git", :tag => "0.1", :submodules => true }
|
|
s.source_files = 'Classes/**/*.{h,m}'
|
|
s.osx.libraries = %w|ssl crypto z|
|
|
s.ios.libraries = %w|z|
|
|
s.requires_arc = true
|
|
|
|
s.ios.deployment_target = '5.0'
|
|
s.osx.deployment_target = '10.6'
|
|
|
|
s.dependency 'libgit2', '0.18.0beta0'
|
|
|
|
s.prefix_header_contents = '#define GTLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);'
|
|
|
|
s.description = <<-DESC
|
|
Objective Git provides Objective-C bindings to the libgit2 linkable C Git library.
|
|
This library follows the rugged API as close as possible while trying to maintain a native objective-c feel.
|
|
DESC
|
|
end
|