-
Notifications
You must be signed in to change notification settings - Fork 10
/
MuslimData.podspec
executable file
·52 lines (42 loc) · 2.36 KB
/
MuslimData.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#
# Be sure to run `pod lib lint MuslimData.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'MuslimData'
s.version = '2.1.0'
s.summary = 'Islamic library (Prayer Times [fixed and calculated], Names of Allah, and Azkars).'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
MuslimData is an Islamic library that provides Prayer Times (fixed and calculated), Offline Geocoder, Location Search, Names of Allah, Azkars (Husnil Muslim).
Fixed and Calculated Prayer Times
Most cities around the world find their prayer times by using some calculations which is based on location (longitude and latitude) but some other cities have fixed time table for their prayer times. This library contains most fixed and calculated prayer times. Now you can contribute it to improve it and also you can use it in Muslim communities or Muslim apps.
DESC
s.homepage = 'https://github.com/kosratdev/muslim-data-ios'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.author = { 'Kosrat D. Ahmad' => '[email protected]' }
s.source = { :git => 'https://github.com/kosratdev/muslim-data-ios.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '12.0'
s.tvos.deployment_target = '13.0'
s.watchos.deployment_target = '6.0'
#s.visionos.deployment_target = '1.0'
s.source_files = 'Sources/MuslimData/**/*'
# s.resource_bundles = {
# 'MuslimData' => ['MuslimData/Resources/*.png']
# }
s.swift_version = "5.10"
s.resources = 'Sources/MuslimData/Resources/**/*'
# s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'Foundation'
s.dependency 'GRDB.swift', '~> 6.0'
end