coccinelle 1.0.0-rc17

Closes Homebrew/homebrew#21566.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Anthony Ramine 2013-07-31 13:22:58 +02:00 committed by Adam Vandenberg
parent f85b09b56f
commit f766fddc24

18
Formula/coccinelle.rb Normal file
View file

@ -0,0 +1,18 @@
require 'formula'
class Coccinelle < Formula
homepage 'http://coccinelle.lip6.fr/'
url 'http://coccinelle.lip6.fr/distrib/coccinelle-1.0.0-rc17.tgz'
sha1 '5c13e521578e20d3805f571dc86931cbd8d63ccd'
depends_on "objective-caml"
def install
system "./configure", "--disable-dependency-tracking",
"--enable-ocaml",
"--enable-opt",
"--prefix=#{prefix}"
system "make"
system "make", "install"
end
end