aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sqlite.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2009-08-08 10:33:03 -0700
committerMax Howell2009-08-10 18:46:15 +0100
commit1089896d77e768e8e6e6a1c5e81c5ac4bcaf8808 (patch)
treede73121e306a0d59cdca5de06236747f24a91d76 /Library/Formula/sqlite.rb
parente78705e7e58bae103019368e18ae21ee13764858 (diff)
downloadhomebrew-1089896d77e768e8e6e6a1c5e81c5ac4bcaf8808.tar.bz2
Sqlite (newer than pack-in version)
Diffstat (limited to 'Library/Formula/sqlite.rb')
-rw-r--r--Library/Formula/sqlite.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/sqlite.rb b/Library/Formula/sqlite.rb
new file mode 100644
index 000000000..32102cd5b
--- /dev/null
+++ b/Library/Formula/sqlite.rb
@@ -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 \ No newline at end of file