homebrew-core/Formula/sqlite.rb
Oliver Galloway-Lunn 0294b26dff SQLite 3.7.6.2
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-04-21 14:31:01 -07:00

25 lines
785 B
Ruby

require 'formula'
class Sqlite < Formula
homepage 'http://sqlite.org/'
url 'http://www.sqlite.org/sqlite-autoconf-3070602.tar.gz'
md5 'f16c08617968b4087b3d591fd575f59f'
version '3.7.6.2'
def options
[
["--with-rtree", "Enables the R*Tree index module"],
["--with-fts", "Enables the FTS Module"],
["--universal", "Build a universal binary."]
]
end
def install
ENV.append "CFLAGS", "-DSQLITE_ENABLE_RTREE=1" if ARGV.include? "--with-rtree"
ENV.append "CPPFLAGS","-DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_FTS3_PARENTHESIS" if ARGV.include? "--with-fts"
ENV.universal_binary if ARGV.include? "--universal"
system "./configure", "--prefix=#{prefix}",
"--disable-dependency-tracking"
system "make install"
end
end