18 lines
500 B
Ruby
18 lines
500 B
Ruby
require 'formula'
|
|
|
|
class Sqlite <Formula
|
|
url 'http://www.sqlite.org/sqlite-amalgamation-3.7.2.tar.gz'
|
|
md5 'bd9586208f48ba840467bcfd066a6fa9'
|
|
homepage 'http://www.sqlite.org/'
|
|
|
|
def options
|
|
[["--with-rtree", "Enables the R*Tree index module"]]
|
|
end
|
|
|
|
def install
|
|
ENV.append "CFLAGS", "-DSQLITE_ENABLE_RTREE=1" if ARGV.include? "--with-rtree"
|
|
system "./configure", "--prefix=#{prefix}",
|
|
"--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|