forked from MailCore/mailcore2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mailcore2-osx.podspec
19 lines (19 loc) · 1.07 KB
/
mailcore2-osx.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |spec|
spec.name = "mailcore2-osx"
spec.version = "0.6.4"
spec.summary = "Mailcore 2 for OS X"
spec.description = "MailCore 2 provide a simple and asynchronous API to work with e-mail protocols IMAP, POP and SMTP. The API has been redesigned from ground up."
spec.homepage = "https://github.com/MailCore/mailcore2"
spec.license = { :type => "BSD", :file => "LICENSE" }
spec.author = "MailCore Authors"
spec.platform = :osx, "10.8"
spec.source = { :http => "https://d.etpan.org/mailcore2-deps/mailcore2-osx/mailcore2-osx-12.zip", :flatten => true }
spec.header_dir = "MailCore"
spec.requires_arc = false
spec.source_files = "cocoapods-build/include/MailCore/*.h"
spec.public_header_files = "cocoapods-build/include/MailCore/*.h"
spec.preserve_paths = "cocoapods-build/include/MailCore/*.h"
spec.vendored_libraries = "cocoapods-build/lib/libMailCore.a"
spec.libraries = ["sasl2", "tidy", "xml2", "iconv", "z", "c++", "resolv"]
spec.prepare_command = "./scripts/build-mailcore2-osx-cocoapod.sh"
end