d53170abc2
Closes Homebrew/homebrew#20021. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
369 B
Ruby
13 lines
369 B
Ruby
require 'formula'
|
|
|
|
class Vifm < Formula
|
|
homepage 'http://vifm.sourceforge.net/index.html'
|
|
url 'http://sourceforge.net/projects/vifm/files/vifm-0.7.5.tar.bz2'
|
|
sha1 '202b369b45d741e32a50084d902c4dcc33014915'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|