forked from ghostery/banshee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbanshee.podspec
21 lines (18 loc) · 905 Bytes
/
banshee.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "banshee"
s.version = "0.1.18"
s.summary = "An iOS browser built on top of UIWebView."
s.homepage = "https://github.com/acatighera/banshee"
s.screenshots = "https://d1k68i4h6ifyxa.cloudfront.net/screens/banshee_screen1.png"
s.license = 'MIT'
s.author = { "Alex Catighera" => "[email protected]" }
s.source = { :git => "https://github.com/acatighera/banshee.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/acatighera'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = [ 'Browser/*.{h,m,c}', 'Browser/*/*.{h,m.c}' ]
s.resources = [ 'Browser Resources/*', 'Browser Resources/**/*' ]
s.frameworks = [ 'SystemConfiguration' ]
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
s.libraries = 'xml2'
end