Sqlite (newer than pack-in version)

master
Adam Vandenberg 2009-08-08 10:33:03 -07:00 committed by Max Howell
parent 428dd6181f
commit 7775d479cf
1 changed files with 14 additions and 0 deletions

14
Formula/sqlite.rb Normal file
View File

@ -0,0 +1,14 @@
require 'brewkit'
class Sqlite <Formula
@url='http://www.sqlite.org/sqlite-amalgamation-3.6.16.tar.gz'
@md5='f21ebadcca1e931212000661e64bb20c'
@homepage='http://www.sqlite.org/'
def install
system "./configure", "--disable-debug",
"--prefix=#{prefix}",
"--disable-dependency-tracking"
system "make install"
end
end