0cd1d19322
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>
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.6.tar.bz2'
|
|
sha1 '2c9a57ec80a0c389c2807b5e86f25c2b8dd1c0cd'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|