2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-08-08 17:33:03 +00:00
|
|
|
|
|
|
|
class Sqlite <Formula
|
2009-11-21 17:50:07 +00:00
|
|
|
url 'http://www.sqlite.org/sqlite-amalgamation-3.6.20.tar.gz'
|
|
|
|
md5 '4bb3e9ee5d25e88b8ff8533fbeb168aa'
|
|
|
|
homepage 'http://www.sqlite.org/'
|
2009-08-08 17:33:03 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|