2012-03-24 00:19:23 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Vifm < Formula
|
|
|
|
homepage 'http://vifm.sourceforge.net/index.html'
|
2013-11-09 19:13:32 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/vifm/vifm/vifm-0.7.6.tar.bz2'
|
|
|
|
sha1 '2c9a57ec80a0c389c2807b5e86f25c2b8dd1c0cd'
|
2013-08-17 19:07:08 +00:00
|
|
|
|
2012-03-24 00:19:23 +00:00
|
|
|
def install
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|