加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
SQLiteRepairKit.podspec 1.70 KB
一键复制 编辑 原始数据 按行查看 历史
cqwicqw 提交于 2023-01-05 19:49 . Update podspec to 1.1.0
# pod lib lint --verbose --skip-import-validation --allow-warnings SQLiteRepairKit.podspec
# pod trunk push --verbose --skip-import-validation --allow-warnings SQLiteRepairKit.podspec
Pod::Spec.new do |sqliterk|
sqliterk.name = "SQLiteRepairKit"
sqliterk.version = "1.3.0"
sqliterk.summary = "Repair kit for SQLite based database"
sqliterk.description = <<-DESC
sqliterk is a efficient, self-contain repair kit for restoring corrupted SQLite based database.
It's basically used in WCDB, which is an efficient, complete, easy-to-use mobile database framework.
DESC
sqliterk.homepage = "https://github.com/Tencent/wcdb"
sqliterk.license = { :type => "BSD", :file => "LICENSE" }
sqliterk.author = { "sanhuazhang" => "sanhuazhang@tencent.com" }
sqliterk.module_name = "sqliterk"
sqliterk.watchos.deployment_target = "2.0"
sqliterk.tvos.deployment_target = "9.0"
sqliterk.osx.deployment_target = "10.9"
sqliterk.ios.deployment_target = "8.0"
sqliterk.dependency 'WCDBOptimizedSQLCipher', '~> 1.3.0'
sqliterk.source = { :git => "https://github.com/Tencent/wcdb.git", :tag => "v1.1.0" }
sqliterk.public_header_files = "repair/SQLiteRepairKit.h"
sqliterk.source_files = "repair/*.{h,c,cpp}"
sqliterk.libraries = "z", "c++"
sqliterk.pod_target_xcconfig = {
"GCC_PREPROCESSOR_DEFINITIONS" => "SQLITE_HAS_CODEC WCDB_BUILTIN_SQLCIPHER",
"LIBRARY_SEARCH_PATHS[sdk=macosx*]" => "$(SDKROOT)/usr/lib/system",
"CLANG_CXX_LANGUAGE_STANDARD" => "gnu++0x",
"CLANG_CXX_LIBRARY" => "libc++",
"APPLICATION_EXTENSION_API_ONLY" => "YES",
}
sqliterk.header_dir = "sqliterk"
end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化