blob: 1515aec10edd70dde1a675ac5efcfa06a7c5487a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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"],
["--universal", "Build a universal binary."]
]
end
def install
ENV.append "CFLAGS", "-DSQLITE_ENABLE_RTREE=1" if ARGV.include? "--with-rtree"
ENV.universal_binary if ARGV.include? "--universal"
system "./configure", "--prefix=#{prefix}",
"--disable-dependency-tracking"
system "make install"
end
end
|