-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathESLocale.podspec
More file actions
21 lines (18 loc) · 870 Bytes
/
ESLocale.podspec
File metadata and controls
21 lines (18 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "ESLocale"
s.version = "1.2.1"
s.summary = "ESLocale"
s.description = "A library that helps configuring NSDateFormatter, NSCalendar and NSLocale correctly. It also contains locale aware date-time functions for SQLite."
s.homepage = "https://github.com/dodikk/ESLocale"
s.license = 'BSD'
s.source = { :git => "https://github.com/dodikk/ESLocale.git", :tag => 'v1.2.1'}
s.authors = {'Alexander Dodatko' => 'dodikk88.tutor@gmail.com'}
s.ios.platform = :ios, '7.0'
s.ios.deployment_target = '7.0'
s.ios.requires_arc = true
s.ios.header_mappings_dir = 'ESLocale'
s.ios.source_files = "ESLocale/**/*.{c,cpp,mm,h,m}"
s.ios.prefix_header_file = 'ESLocale/ESLocale-Prefix.pch'
s.ios.frameworks = 'Foundation'
s.ios.libraries = 'sqlite3', 'c++', 'stdc++'
end