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