homebrew-core/Formula/ecl.rb
Adam Vandenberg 7bd947eb0b Update formulae for version 0.7
* Use new "url" features
* Use keg_only DSL
* Use "skip_clean :all" DSL
* Whitespace and style cleanups
* Make bash invocations less silly
* Use new man2-man8 helpers
* Remove "FileUtils." since it is included in Formula
* Use real names for deps instead of aliases
* ENV.x11 now updates path, so remove that from individual brews
2010-08-07 18:08:53 -07:00

14 lines
361 B
Ruby

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