-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSwiftLevelDB.podspec
More file actions
20 lines (19 loc) · 909 Bytes
/
Copy pathSwiftLevelDB.podspec
File metadata and controls
20 lines (19 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |spec|
spec.name = "SwiftLevelDB"
spec.version = "1.0.0"
spec.summary = "A short description of SwiftLevelDB."
spec.description = <<-DESC
Swift LevelDB database
DESC
spec.homepage = "https://github.com/CoderYFL/LevelDB-Swift"
spec.ios.deployment_target = "10.0"
spec.source = { :git => "https://github.com/CoderYFL/SwiftLevelDB.git", :tag => "1.1.0" }
spec.author = { 'Cherish' => 'pursuitsunshine@gmail.com' }
spec.source_files = "SwiftLevelDB/src/*.{swift,h,cpp,hpp}"
spec.requires_arc = true
spec.license = "MIT"
spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/leveldb-library/include" }
spec.public_header_files = "SwiftLevelDB/src/SwiftLevelDB.h", "SwiftLevelDB/src/Wrapper.hpp"
spec.module_name = 'SwiftLevelDB'
spec.dependency "leveldb-library", "~> 1.22.1"
end