8dc451e3e2
Closes Homebrew/homebrew#20645. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
377 B
Ruby
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
|