88779ade49
Closes Homebrew/homebrew#14653.
18 lines
495 B
Ruby
18 lines
495 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/'
|
|
sha1 '97ee7ee60fb8e66cdcc8fc61339e8ab616bcd2df'
|
|
|
|
depends_on 'objective-caml'
|
|
depends_on 'camlp5'
|
|
|
|
def install
|
|
# like camlp5, this build fails if the jobs are parallelized
|
|
ENV.deparallelize
|
|
args = %W[BINDIR=#{bin} LIBDIR=#{lib} MANDIR=#{man}]
|
|
system "make", *args
|
|
system "make", "install", *args
|
|
end
|
|
end
|