-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathMROGeometry.podspec
26 lines (23 loc) · 1016 Bytes
/
MROGeometry.podspec
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
#
# Be sure to run `pod lib lint MROGeometry.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "MROGeometry"
s.version = File.read('VERSION')
s.summary = "C and Objective C math and geometry helpers"
s.homepage = "http://purl.mro.name/ios/MROGeometry"
s.license = 'Human Rights License'
s.author = { "Marcus Rohrmoser" => "[email protected]" }
s.source = { :git => "https://github.com/mro/MROGeometry.git", :tag => s.version.to_s }
s.platform = :ios, '5.0'
s.ios.deployment_target = '5.0'
s.requires_arc = true
s.source_files = 'MROGeometry/*.{h,m,c}'
s.prefix_header_file = 'MROGeometry/MROGeometry-Prefix.pch'
s.public_header_files = 'MROGeometry/*CG*.h'
# s.frameworks = 'SomeFramework', 'AnotherFramework'
# s.dependency 'JSONKit', '~> 1.4'
end