diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/ecl.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/ecl.rb b/Library/Formula/ecl.rb new file mode 100644 index 000000000..3c5fe1ce4 --- /dev/null +++ b/Library/Formula/ecl.rb @@ -0,0 +1,16 @@ +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 |
