blob: ef1665677738f9208a525115b5f00630da242d98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|