require 'formula' class Sqlite < Formula homepage 'http://sqlite.org/' url 'http://sqlite.org/sqlite-autoconf-3070600.tar.gz' sha256 'c56417140f32f495827c90565a25c1b1068d1117ae368ea6ab58c01875d78771' version '3.7.6' 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