-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cpng.podspec
24 lines (21 loc) · 894 Bytes
/
Cpng.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "Cpng"
s.version = "2.0.1"
s.summary = "libpng wrapper to be used in Swift projects"
s.description = <<-DESC
libpng v1.6.28 wrapper for usage in Swift projects
DESC
s.homepage = "https://github.com/s1ddok/Cpng"
s.license = { :type => "Open Source", :file => "LICENSE" }
s.author = { "Andrey Volodin" => "[email protected]" }
s.social_media_url = "http://twitter.com/s1ddok"
# When using multiple platforms
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.11"
# s.watchos.deployment_target = "2.0"
# s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/s1ddok/Cpng.git", :tag => "#{s.version}" }
s.source_files = "Cpng/**/*.{h,c}"
s.private_header_files = "Cpng/include/pngpriv.h", "Cpng/include/pnginfo.h"
s.libraries = "z"
end