homebrew-core/Formula/vifm.rb
xaizek 0cd1d19322 vifm 0.7.6
Lion dependency is removed as vifm doesn't use `wcscasecmp` and
`wcsncasecmp` functions anymore.

Closes Homebrew/homebrew#24129.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-11-09 21:46:00 -08: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.6.tar.bz2'
sha1 '2c9a57ec80a0c389c2807b5e86f25c2b8dd1c0cd'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end