blob: a29efcaf6ef7db4ac5c8da2c14d5c006259ac12a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Sqlite <Formula
@url='http://www.sqlite.org/sqlite-amalgamation-3.6.17.tar.gz'
@md5='3172f8a23e7e7f0e5b295062e339a149'
@homepage='http://www.sqlite.org/'
def install
system "./configure", "--disable-debug",
"--prefix=#{prefix}",
"--disable-dependency-tracking"
system "make install"
end
end
|