forked from codewhisper/EOSFTPServer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
EOSFTPServer.podspec
32 lines (28 loc) · 1.34 KB
/
EOSFTPServer.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
25
26
27
28
29
30
31
32
#
# Be sure to run `pod lib lint EOSFTPServer.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "EOSFTPServer"
s.version = "0.0.10"
s.summary = "A project to create a complete, standard compliant, multi-user, Objective-C (Mac OS X / iOS) FTP server."
s.description = <<-DESC
A project to create a complete, standard compliant, multi-user, Objective-C (Mac OS X / iOS) FTP server.
The original project was created by Jean-David Gadina - XS-Labs.
DESC
s.homepage = "https://github.com/codewhisper/EOSFTPServer"
s.license = 'Boost'
s.author = { "Michael Litvak" => "[email protected]" }
s.source = { :git => "https://github.com/xaphod/EOSFTPServer.git", :tag => s.version.to_s }
s.platform = :ios, '11.0'
s.requires_arc = false
s.source_files = 'Pod/Classes'
# s.public_header_files = 'Pod/Classes/**/*.h'
s.dependency 'xaphodObjCUtils/CocoaRunloopSocket'
s.xcconfig = {'OTHER_LDFLAGS' => '-ObjC'}
s.prefix_header_file = 'Pod/Classes/EOSFTPServer-Prefix.pch'
end