2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-08-08 17:33:03 +00:00
|
|
|
|
|
|
|
class Sqlite <Formula
|
2010-11-07 21:42:01 +00:00
|
|
|
url 'http://www.sqlite.org/sqlite-amalgamation-3.7.3.tar.gz'
|
|
|
|
md5 '74fe78b264f1c434c4b159d45b78e9b7'
|
2009-11-21 17:50:07 +00:00
|
|
|
homepage 'http://www.sqlite.org/'
|
2009-08-08 17:33:03 +00:00
|
|
|
|
2010-04-08 02:41:07 +00:00
|
|
|
def options
|
2010-11-02 14:40:27 +00:00
|
|
|
[
|
|
|
|
["--with-rtree", "Enables the R*Tree index module"],
|
2010-11-16 05:35:28 +00:00
|
|
|
["--with-fts", "Enables the FTS Module"],
|
2010-11-02 14:40:27 +00:00
|
|
|
["--universal", "Build a universal binary."]
|
|
|
|
]
|
2010-04-08 02:41:07 +00:00
|
|
|
end
|
|
|
|
|
2009-08-08 17:33:03 +00:00
|
|
|
def install
|
2010-04-08 02:41:07 +00:00
|
|
|
ENV.append "CFLAGS", "-DSQLITE_ENABLE_RTREE=1" if ARGV.include? "--with-rtree"
|
2010-11-16 05:35:28 +00:00
|
|
|
ENV.append "CPPFLAGS","-DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_FTS3_PARENTHESIS" if ARGV.include? "--with-fts"
|
2010-10-17 15:52:14 +00:00
|
|
|
ENV.universal_binary if ARGV.include? "--universal"
|
2010-03-12 18:20:08 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}",
|
2009-08-08 17:33:03 +00:00
|
|
|
"--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
2010-04-08 02:41:07 +00:00
|
|
|
end
|