homebrew-core/Formula/vifm.rb
Victor Martinez 8dc451e3e2 Fixed several broken sourceforge.net download locations
Closes Homebrew/homebrew#20645.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-30 12:17:57 -07:00

13 lines
377 B
Ruby

require 'formula'
class Vifm < Formula
homepage 'http://vifm.sourceforge.net/index.html'
url 'http://downloads.sourceforge.net/project/vifm/vifm/vifm-0.7.5.tar.bz2'
sha1 '202b369b45d741e32a50084d902c4dcc33014915'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end