-
Notifications
You must be signed in to change notification settings - Fork 1
/
sqlite3_arabic_tokenizer.podspec
33 lines (28 loc) · 1.5 KB
/
sqlite3_arabic_tokenizer.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
#
# Be sure to run `pod lib lint sqlite3_arabic_tokenizer.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 = 'sqlite3_arabic_tokenizer'
s.version = '0.0.3'
s.summary = 'sqlite3_arabic_tokenizer is a FTS5 extension to tokenizer arabic thus removing diacritics'
s.description = <<-DESC
sqlite3_arabic_tokenizer is a FTS5 extension to tokenizer arabic thus removing diacritics. It will remove diacritics from arabic word so that arabic can be searched with or without diacritics. It is just a native c library wrapped in a framework.
DESC
s.homepage = 'https://github.com/GreentechApps/sqlite3_arabic_tokenizer_pod'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Shahriar Nasim Nafi' => '[email protected]' }
s.source = { :git => 'https://github.com/GreentechApps/sqlite3_arabic_tokenizer_pod.git', :tag => s.version.to_s }
s.prepare_command = <<-CMD
cd sqlite3_arabic_tokenizer/Common/
make sqlite3-arabic-tokenizer.c
CMD
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.13'
s.source_files = 'sqlite3_arabic_tokenizer/Common/*.{h,c}'
s.requires_arc = false
s.public_header_files = 'sqlite3_arabic_tokenizer/Common/sqlite3-arabic-tokenizer.h'
end