-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMMDB.podspec
More file actions
31 lines (23 loc) · 999 Bytes
/
MMDB.podspec
File metadata and controls
31 lines (23 loc) · 999 Bytes
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
Pod::Spec.new do |s|
s.name = "MMDB"
s.version = "0.5.5"
s.summary = "A wrapper for MaxMind DB"
s.description = <<-DESC
A tiny wrapper for libmaxminddb which allows you to lookup
Geo data by IP address.
DESC
s.homepage = "https://github.com/ismycho/MMDB"
s.license = { :type => "APACHE 2.0", :file => "LICENSE" }
s.author = { "ismycho" => "khw0212@hanmail.net" }
s.platform = :ios, :osx
s.swift_version = "5.0"
s.ios.deployment_target = "13.0"
s.osx.deployment_target = "11.10"
s.source = { :git => "https://github.com/ismycho/MMDB.git",
:tag => s.version }
s.source_files = "Sources/MMDB.swift", "Sources/libmaxminddb/*.{h,c}"
s.ios.public_header_files = "Sources/libmaxminddb/*.h", "Sources/MMDB.h"
s.osx.public_header_files = "Sources/libmaxminddb/*.h", "Sources/MMDB.h"
s.framework = "Foundation"
s.requires_arc = true
end