aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2012-09-06 20:24:36 -0500
committerJack Nagel2012-09-06 20:24:36 -0500
commitff41691dd0eee4237656b201114b041a30a9aa33 (patch)
tree746f53edd120dda86b7b2ccdddb99c705366dfc4 /Library/Formula
parent3029d32921a39d97a2fcec648afd0dc0f682256b (diff)
downloadhomebrew-ff41691dd0eee4237656b201114b041a30a9aa33.tar.bz2
sqlite 3.7.14
- Make readline a recommended dep in preparation for upcoming dependency changes - Remove redundant ENV.Os, as that is the current default Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/sqlite.rb20
1 files changed, 8 insertions, 12 deletions
diff --git a/Library/Formula/sqlite.rb b/Library/Formula/sqlite.rb
index a0c15140a..876ad531d 100644
--- a/Library/Formula/sqlite.rb
+++ b/Library/Formula/sqlite.rb
@@ -2,23 +2,23 @@ require 'formula'
class SqliteFunctions < Formula
url 'http://www.sqlite.org/contrib/download/extension-functions.c?get=25', :using => :nounzip
- sha1 'd3833b6ad68db8505d1044f761dd962f415cd302'
+ sha1 'c68fa706d6d9ff98608044c00212473f9c14892f'
version '2010-01-06'
end
class SqliteDocs < Formula
- url 'http://www.sqlite.org/sqlite-doc-3071300.zip'
- sha1 '839f471d03de777b050bf585ab6175a27d96c360'
- version '3.7.13'
+ url 'http://www.sqlite.org/sqlite-doc-3071400.zip'
+ sha1 '38a8e9a4fa515f7aa6df7d31e58bd0ec60658031'
+ version '3.7.14'
end
class Sqlite < Formula
homepage 'http://sqlite.org/'
- url 'http://sqlite.org/sqlite-autoconf-3071300.tar.gz'
- sha1 'd3833b6ad68db8505d1044f761dd962f415cd302'
- version '3.7.13'
+ url 'http://sqlite.org/sqlite-autoconf-3071400.tar.gz'
+ sha1 '7b429809918201555f4c0fa639183a1c663d3fe0'
+ version '3.7.14'
- depends_on 'readline' => :optional
+ depends_on 'readline' => :recommended
option :universal
option 'with-docs', 'Install HTML documentation'
@@ -27,10 +27,6 @@ class Sqlite < Formula
option 'with-functions', 'Enable more math and string functions for SQL queries'
def install
- # O2 and O3 leads to corrupt/invalid rtree indexes
- # http://groups.google.com/group/spatialite-users/browse_thread/thread/8e1cfa79f2d02a00#
- ENV.Os
-
ENV.append 'CPPFLAGS', "-DSQLITE_ENABLE_RTREE" unless build.include? "without-rtree"
ENV.append 'CPPFLAGS', "-DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_FTS3_PARENTHESIS" if build.include? "with-fts"