aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bvi.rb
blob: 7ab339de15385bac4fcd20f3edbf81e716aa6eaa (plain)
1
2
3
4
5
6
7
8
9
10
11
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