homebrew-core/Formula/ecl.rb
Victor Martinez 8dc451e3e2 Fixed several broken sourceforge.net download locations
Closes Homebrew/homebrew#20645.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-30 12:17:57 -07:00

14 lines
371 B
Ruby

require 'formula'
class Ecl < Formula
homepage 'http://ecls.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/ecls/ecls/12.7/ecl-12.7.1.tar.gz'
sha1 'c5b81d0dc5fdd6c72af99dc883752bfee85028dc'
def install
ENV.deparallelize
system "./configure", "--prefix=#{prefix}", "--enable-unicode"
system "make"
system "make install"
end
end