aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ledit.rb
diff options
context:
space:
mode:
authorCory2010-08-29 15:34:47 -0400
committerAdam Vandenberg2010-09-06 12:24:59 -0700
commit486c0c5dc95fdd581657d29e4833208b63fdbfb2 (patch)
treeac9ab980312102248d04c1fb83c77fff028ef37d /Library/Formula/ledit.rb
parent75a2c2c16fcbefee658800d8136a39a233237b4d (diff)
downloadhomebrew-486c0c5dc95fdd581657d29e4833208b63fdbfb2.tar.bz2
Initial commit of new ledit formula.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/ledit.rb')
-rw-r--r--Library/Formula/ledit.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/ledit.rb b/Library/Formula/ledit.rb
new file mode 100644
index 000000000..ef1665677
--- /dev/null
+++ b/Library/Formula/ledit.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class Ledit <Formula
+ url 'http://pauillac.inria.fr/~ddr/ledit/distrib/src/ledit-2.01.tgz'
+ homepage 'http://pauillac.inria.fr/~ddr/ledit/'
+ md5 '24faa563dff1091aea2e744b1ec15fbb'
+
+ depends_on 'objective-caml'
+ depends_on 'camlp5'
+
+ def install
+ # like camlp5, this build fails if the jobs are parallelized
+ system "make -j 1 BINDIR=#{bin} LIBDIR=#{lib} MANDIR=#{man}"
+ system "make install BINDIR=#{bin} LIBDIR=#{lib} MANDIR=#{man}"
+ end
+end