Skip to content

Instantly share code, notes, and snippets.

@jberkel
Last active December 17, 2015 03:19
Show Gist options
  • Save jberkel/5542181 to your computer and use it in GitHub Desktop.
Save jberkel/5542181 to your computer and use it in GitHub Desktop.
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" => "drh@hwaci.com"}
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