MROGeometry.podspec 1.6 KB

12345678910111213141516171819202122232425262728293031323334
  1. #
  2. # Be sure to run `pod lib lint MROGeometry.podspec' to ensure this is a
  3. # valid spec and remove all comments before submitting the spec.
  4. #
  5. # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
  6. #
  7. Pod::Spec.new do |s|
  8. s.name = "MROGeometry"
  9. s.version = File.read('VERSION')
  10. s.summary = "C and Objective C math and geometry helpers"
  11. s.description = <<-DESC
  12. Some C / Objective-C helpers related to
  13. - [CGPoint](http://developer.apple.com/library/mac/#documentation/GraphicsImaging/Reference/CGGeometry/Reference/reference.html%23//apple_ref/doc/uid/TP30000955-CH2g-C016211),
  14. - [CGAffineTransform](http://developer.apple.com/library/ios/#documentation/GraphicsImaging/Reference/CGAffineTransform/Reference/reference.html%23//apple_ref/doc/c_ref/CGAffineTransform),
  15. - [CGPath](http://developer.apple.com/library/ios/#documentation/GraphicsImaging/Reference/CGPath/Reference/reference.html) and
  16. - [SVG path](http://www.w3.org/TR/SVG/paths.html).
  17. DESC
  18. s.homepage = "http://purl.mro.name/ios/MROGeometry"
  19. s.license = 'Human Rights License'
  20. s.author = { "Marcus Rohrmoser" => "mrohrmoser@acm.org" }
  21. s.source = { :git => "https://github.com/mro/MROGeometry.git", :tag => s.version.to_s }
  22. s.platform = :ios, '5.0'
  23. s.ios.deployment_target = '5.0'
  24. s.requires_arc = true
  25. s.source_files = 'MROGeometry/*.{h,m,c}'
  26. s.prefix_header_file = 'MROGeometry/MROGeometry-Prefix.pch'
  27. s.public_header_files = 'MROGeometry/*CG*.h'
  28. s.frameworks = 'CoreGraphics'
  29. end