radare2 0.7

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Scott Dunlop 2011-06-06 17:58:45 -07:00 committed by Adam Vandenberg
parent ca88f8340c
commit ac5c75a760

19
Formula/radare2.rb Normal file
View file

@ -0,0 +1,19 @@
require 'formula'
class Radare2 < Formula
url 'http://radare.nopcode.org/get/radare2-0.7.tar.gz'
head 'hg://http://hg.youterm.com/radare2'
homepage 'http://radare.nopcode.org'
md5 '468367eb881edad325823cabdef5d53d'
depends_on 'libewf'
depends_on 'libmagic'
depends_on 'gmp'
depends_on 'lua'
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end