Last active
December 17, 2015 03:19
-
-
Save jberkel/5542181 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = "sqlite3" | |
s.version = "3.7.16.2" | |
s.summary = "SQLite is an embedded SQL database engine." | |
s.homepage = "http://www.sqlite.org" | |
s.license = "Public Domain" | |
s.author = {"D. Richard Hipp" => "[email protected]"} | |
sqlite_version_format = "%.1d%.2d%.2d%.2d" % s.version.to_s.split('.').push(0) | |
s.source = {:http => "http://mirror.nienbo.com/sqlite/sqlite-amalgamation-3071601.zip"} | |
s.source_files = "sqlite-amalgamation-#{sqlite_version_format}/sqlite3*.{h,c}" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment