61b2307139
brewkit.rb changes ENV destructively, so lets not do that everytime a formula is required. Now it's possible for other tools to require a formula description without worrying about side-effects.
14 lines
No EOL
386 B
Ruby
14 lines
No EOL
386 B
Ruby
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 |