Last active
December 16, 2015 17:00
-
-
Save steipete/5467684 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = 'PSPDFKit' | |
s.version = '3.0.8' | |
s.license = 'Commercial' | |
s.summary = 'PSPDFKit - The definitive framework for displaying and annotating PDFs in your iOS apps.' | |
s.homepage = 'http://PSPDFKit.com' | |
s.author = { 'PSPDFKit GmbH' => '[email protected]' } | |
s.platform = :ios, '5.0' | |
s.source = { :git => 'https://github.com/PSPDFKit/PSPDFKit.git' } | |
s.preserve_path = 'README.md' | |
s.resource = 'PSPDFKit/PSPDFKit.bundle' | |
s.source_files = 'PSPDFKit/**/*.{h,c,m}' | |
s.exclude_files = 'PSPDFKit/Categories/UIViewController+PSPDFKitAdditions.{h,m}', 'PSPDFKit/Helper/PSPDFPatches.{h,m}', 'PSPDFKit/Helper/PSPDFDebugHelper.{h,m}', 'PSPDFKit/Vendor/PSTCollectionView' | |
s.requires_arc = true | |
s.library = 'z', 'sqlite3', 'xml2' | |
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' } | |
s.frameworks = 'QuartzCore', 'CoreText', 'CoreMedia', 'MediaPlayer', 'AVFoundation', 'ImageIO', 'MessageUI', | |
'CoreGraphics', 'Foundation', 'CFNetwork', 'MobileCoreServices', 'SystemConfiguration', | |
'AssetsLibrary', 'Security', 'UIKit', 'AudioToolbox', 'QuickLook', 'CoreData' | |
s.dependency 'PSTCollectionView', '>= 1.1.0' | |
s.subspec 'no-arc' do |sp| | |
sp.source_files = 'PSPDFKit/Categories/UIViewController+PSPDFKitAdditions.{h,m}', 'PSPDFKit/Helper/PSPDFPatches.{h,m}', 'PSPDFKit/Helper/PSPDFDebugHelper.{h,m}' | |
sp.requires_arc = false | |
end | |
s.prepare_command = "echo '#define GIT_VERSION @\"#{s.version}\"\n#define GIT_COMMIT_COUNT 0' > PSPDFKit/InfoPlist.h" | |
end | |
# Thanks to Eloy Durán (@alloy) both for creating CocoaPods and helping out with creating this podspec. |
To use the unicode61 tokenizer with PSPDFLibrary we should remove sqlite3 and add the sqlite3 library shipped with the dmg file. Should that library link to our project or to the Pods project? Or it doesn't matter?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is now on Cocoapods, starting with 3.1.4: https://github.com/CocoaPods/Specs/tree/master/PSPDFKit