coccinelle 1.0.0-rc17
Closes Homebrew/homebrew#21566. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
f85b09b56f
commit
f766fddc24
1 changed files with 18 additions and 0 deletions
18
Formula/coccinelle.rb
Normal file
18
Formula/coccinelle.rb
Normal 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
|
Loading…
Reference in a new issue