Sqlite (newer than pack-in version)
This commit is contained in:
parent
428dd6181f
commit
7775d479cf
1 changed files with 14 additions and 0 deletions
14
Formula/sqlite.rb
Normal file
14
Formula/sqlite.rb
Normal 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
|
Loading…
Reference in a new issue