aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMartin Kühl2010-04-19 10:17:18 +0200
committerAdam Vandenberg2010-04-29 18:36:00 -0700
commit9352681385148b850db5aeec43bed871ecc8b57d (patch)
tree860f013ff27e27431eeb4494e5a16fb20a530b33 /Library
parent2b132d242d43d7e524aa2653bf79c21d505f0516 (diff)
downloadhomebrew-9352681385148b850db5aeec43bed871ecc8b57d.tar.bz2
New formula: ecl
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ecl.rb16
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