Skip to content

Commit

Permalink
Added DTCoreText 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
odrobnik committed Apr 2, 2013
1 parent 7a0cd33 commit c927401
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions DTCoreText/1.4.0/DTCoreText.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
Pod::Spec.new do |spec|
spec.name = 'DTCoreText'
spec.version = '1.4.0'
spec.platform = :ios, '4.3'
spec.license = 'BSD'
spec.source = { :git => 'https://github.com/Cocoanetics/DTCoreText.git', :tag => spec.version.to_s }
spec.source_files = 'Core/Source/*.{h,m,c}'
spec.dependency 'DTFoundation/Core', '~>1.1'
spec.dependency 'DTFoundation/DTHMLParser', '~>1.0'
spec.frameworks = 'MediaPlayer', 'QuartzCore', 'CoreText', 'CoreGraphics', 'ImageIO'
spec.requires_arc = true
spec.homepage = 'https://github.com/Cocoanetics/DTCoreText'
spec.summary = 'Methods to allow using HTML code with CoreText.'
spec.author = { 'Oliver Drobnik' => 'oliver@cocoanetics.com' }
spec.library = 'xml2'
spec.xcconfig = { 'HEADER_SEARCH_PATHS' => '"$(SDKROOT)/usr/include/libxml2"' }
spec.prefix_header_contents = '#import <CoreText/CoreText.h>'
def spec.post_install(target)
Dir.chdir(config.project_pods_root + 'DTCoreText/Core/Source/') do
Dir.glob('*.css') do |css_file|
system '/usr/bin/xxd', '-i', css_file, css_file + '.c'
end
end
end
end

0 comments on commit c927401

Please sign in to comment.