blob: 9d271712a6893518a4c97562e3a469ecce742c8b (
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.20.tar.gz'
md5 '4bb3e9ee5d25e88b8ff8533fbeb168aa'
homepage 'http://www.sqlite.org/'
def install
system "./configure", "--disable-debug",
"--prefix=#{prefix}",
"--disable-dependency-tracking"
system "make install"
end
end
|