Skip to content

Commit

Permalink
Added DTCoreText fork with superscript modifications, pre-pull-request
Browse files Browse the repository at this point in the history
  • Loading branch information
TheoA committed Jul 16, 2013
1 parent 107256a commit 3561915
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions DTCoreTextTheo/1.6.1/DTCoreTextTheo.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
Pod::Spec.new do |spec|
spec.name = 'DTCoreTextTheo'
spec.version = '1.6.1'
spec.platform = :ios, '4.3'
spec.license = 'BSD'
spec.source = { :git => 'https://github.com/TheoA/DTCoreText.git', :tag => spec.version.to_s }
spec.source_files = 'Core/Source/*.{h,m,c}'
spec.dependency 'DTFoundation/Core', '~>1.4.3'
spec.dependency 'DTFoundation/UIKit', '~>1.4.3'
spec.dependency 'DTFoundation/DTHMLParser', '~>1.4.3'
spec.frameworks = 'MediaPlayer', 'QuartzCore', 'CoreText', 'CoreGraphics', 'ImageIO'
spec.requires_arc = true
spec.homepage = 'https://github.com/TheoA/DTCoreText'
spec.summary = 'Methods to allow using HTML code with CoreText.'
spec.author = { 'Oliver Drobnik' => '[email protected]' }
spec.prefix_header_contents = '#import <CoreText/CoreText.h>'

spec.pre_install do |pod_representation, library_representation|
Dir.chdir(pod_representation.root + '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 3561915

Please sign in to comment.