aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2013-06-06 13:51:56 -0700
committerAdam Vandenberg2013-06-06 14:12:30 -0700
commit8167102b6ed4b0ca0ca148a4e8469f549d967097 (patch)
treec9108cba571b8a6b4cf0ac5631efd16bb67a0c98 /Library
parentdb3892bf8e81f5446838b06d05e4c0729a69683e (diff)
downloadhomebrew-8167102b6ed4b0ca0ca148a4e8469f549d967097.tar.bz2
sqlite: deps come after options
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/sqlite.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/sqlite.rb b/Library/Formula/sqlite.rb
index 98ff0e67d..4b6820efd 100644
--- a/Library/Formula/sqlite.rb
+++ b/Library/Formula/sqlite.rb
@@ -18,15 +18,15 @@ class Sqlite < Formula
version '3.7.17'
sha1 'e31958e56b1d7bef9433b1ff2e875c8c290d37f4'
- depends_on 'readline' => :recommended
-
option :universal
option 'with-docs', 'Install HTML documentation'
option 'without-rtree', 'Disable the R*Tree index module'
option 'with-fts', 'Enable the FTS module'
option 'with-functions', 'Enable more math and string functions for SQL queries'
- keg_only :provided_by_osx, "OS X already provides (an older) sqlite3."
+ depends_on 'readline' => :recommended
+
+ keg_only :provided_by_osx, "OS X provides an older sqlite3."
def install
ENV.append 'CPPFLAGS', "-DSQLITE_ENABLE_RTREE" unless build.without? "rtree"