From 6d9a4c79b05d9ab6f4171e50bbd2ca857c6cad91 Mon Sep 17 00:00:00 2001 From: Ted Tomlinson Date: Sun, 13 Oct 2013 12:38:37 -0700 Subject: [PATCH] add a basic podspec for INKFramework --- InkiOSFramework.podspec | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 InkiOSFramework.podspec diff --git a/InkiOSFramework.podspec b/InkiOSFramework.podspec new file mode 100644 index 0000000..64fc187 --- /dev/null +++ b/InkiOSFramework.podspec @@ -0,0 +1,26 @@ +Pod::Spec.new do |s| + s.name = 'InkiOSFramework' + s.version = '0.4.4' + s.summary = 'Ink iOS Framework' + s.description = <<-DESC + The Ink mobile framework for iOS. Connect your app with others to enable + new workflows and capabilities for your users. + DESC + s.homepage = 'http://inkmobility.com' + s.license = { + :type => 'Copyright', + :text => 'http://inkmobility.com/license' + } + s.author = 'Cloudtop Inc.' + + s.source = { :http => 'https://github.com/Ink/InkiOSFramework.git'} + s.platform = :ios + s.ios.deployment_target = '6.0' + + s.vendored_frameworks = 'Library/INK.framework' + s.resource = 'Library/INK.bundle' + + s.frameworks = 'MobileCoreServices', 'CFNetwork', 'Accelerate', 'Security', 'SystemConfiguration', 'QuickLook', 'QuartzCore', 'CoreGraphics' + s.libraries = 'sqlite3.0', 'icucore' + s.xcconfig = { 'OTHER_LDFLAGS' => '-all_load -lz' } +end