aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bvi.rb
diff options
context:
space:
mode:
authorBen Bleything2010-01-26 11:02:51 -0800
committerAdam Vandenberg2010-01-30 23:18:16 -0800
commit4638635af914009a66e4fcc233c7ef1dc5100aa9 (patch)
tree839f3979c3acea9370e47c003bb202a2cc3aa9cc /Library/Formula/bvi.rb
parent1e3f8e850b9958fdc07b14c9a36570df62cd6ceb (diff)
downloadhomebrew-4638635af914009a66e4fcc233c7ef1dc5100aa9.tar.bz2
add formula for bvi
Signed-off-by: Adam Vandenberg <flangy@gmail.com> Updated man path.
Diffstat (limited to 'Library/Formula/bvi.rb')
-rw-r--r--Library/Formula/bvi.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/bvi.rb b/Library/Formula/bvi.rb
new file mode 100644
index 000000000..7ab339de1
--- /dev/null
+++ b/Library/Formula/bvi.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Bvi < Formula
+ url 'http://prdownloads.sourceforge.net/bvi/bvi-1.3.2.src.tar.gz'
+ homepage 'http://bvi.sourceforge.net'
+ md5 '4257305ffb27177a6d5208b2df4ca92d'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
+ system "make install"
+ end
+end