homebrew-core/Formula/ex-vi.rb
Jaime Marquínez Ferrándiz b7678ae561 Change some SourceForge urls to use https://downloads.sourceforge.net
Closes Homebrew/homebrew#27041.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-02 09:16:53 -08:00

17 lines
556 B
Ruby

require 'formula'
class ExVi < Formula
homepage 'http://ex-vi.sourceforge.net/'
url 'https://downloads.sourceforge.net/project/ex-vi/ex-vi/050325/ex-050325.tar.bz2'
sha1 '573501d15fa4be59f136641957c7f893e86bac82'
conflicts_with 'vim',
:because => 'ex-vi and vim both install bin/ex and bin/view'
def install
system "make", "install", "INSTALL=/usr/bin/install",
"PREFIX=#{prefix}",
"PRESERVEDIR=/var/tmp/vi.recover",
"TERMLIB=ncurses"
end
end