Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] MailCore 0.2.7 #622

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions MailCore/0.2.7/MailCore.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Pod::Spec.new do |s|
s.name = "MailCore"
s.version = "0.2.7"
s.summary = "A Mac/iOS framework for working with the e-mail protocols IMAP and SMTP."
s.homepage = "https://github.com/mronge/MailCore"
s.license = "BSD"
s.author = { "Matt Ronge" => "[email protected]" }
s.source = { :git => "https://github.com/mronge/MailCore.git", :tag => s.version.to_s }
s.platform = :osx
end
41 changes: 41 additions & 0 deletions iOSPorts/0.6/iOSPorts.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
Pod::Spec.new do |s|
s.name = "iOSPorts"
s.version = "0.6"
s.summary = "A collection of libraries such as OpenSSL, Cyrus SASL, OpenLDAP, and PCRE which have been ported to the iPhone/iOS platform."
s.homepage = "http://www.bindlebinaries.com/products/developer/iosports/"
s.license = 'BSD-style Open Source'
s.author = { "David M. Syzdek" => "[email protected]" }
s.source = { :git => "https://github.com/bindle/iOSPorts.git", :tag => "v0.6" }
s.platform = :ios
s.preserve_paths = "ports", "build-aux"
s.requires_arc = false
# s.xcconfig = { 'HEADER_SEARCH_PATHS' => 'openssl openssl/include openssl/crypto', 'OTHER_LDFLAGS' => '-ObjC' }

s.subspec 'OpenSSL' do |sp|
sp.header_dir = 'openssl'
sp.source_files = 'ports/security/openssl/openssl/*.h'

def sp.pre_install(pod, target_definition)
Dir.chdir(pod.root + 'ports/security/openssl') do
`make`
raise "[!] Make for OpenSSL failed" unless $?.to_i == 0
end
end

# sp.subspec 'ssl' do |ssp|
# ssp.header_dir = 'crypto'
# # ssp.source_files = 'ports/security/openssl/openssl/ssl/**/*.{h,c}'
# ssp.dependency 'iOSPorts/OpenSSL/crypto'
# end

sp.subspec 'crypto' do |ssp|
# ssp.header_dir = 'openssl/crypto'
ssp.source_files = [
'ports/security/openssl/openssl/crypto/*.{h,c}',
# Excluded folders {MD2,JPAKE,RC5,STORE}
'ports/security/openssl/openssl/crypto/{aes,asn1,bf,bio,bn,buffer,camellia,cast,cms,comp,conf,des,dh,dsa,dso,ec,ecdh,ecdsa,engine,err,evp,hmac,idea,krb5,lhash,md4,md5,mdc2,modes,objects,ocsp,pem,perlasm,pkcs12,pkcs7,pqueue,rand,rc2,rc4,ripemd,rsa,seed,sha,stack,threads,ts,txt_db,ui,whrlpool,x509,x509v3,}/*.{h,c}'
]
end
end

end
12 changes: 12 additions & 0 deletions libetpan/0.0.1/libetpan.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Pod::Spec.new do |s|
s.name = 'libetpan'
s.version = '0.0.1'
s.summary = 'Mail Framework for C Language.'
s.homepage = 'https://github.com/dinhviethoa/libetpan'
s.license = { :type => 'BSD', :file => 'COPYRIGHT' }
s.author = 'DINH Viêt Hoà'
s.source = { :git => 'https://github.com/dinhviethoa/libetpan.git', :commit => 'aff935754d' }
s.ios.deployment_target = '4.0'
s.osx.deployment_target = '10.6'
s.source_files = 'include', 'src/**/*.{h,m}'
end