homebrew-core/Formula/ledit.rb
Jack Nagel 3486cbd462 Avoid hard-coding 'make -j1'
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-12-09 13:57:47 -06:00

17 lines
496 B
Ruby

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
ENV.deparallelize
system "make BINDIR=#{bin} LIBDIR=#{lib} MANDIR=#{man}"
system "make install BINDIR=#{bin} LIBDIR=#{lib} MANDIR=#{man}"
end
end