radare2 0.7
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
ca88f8340c
commit
ac5c75a760
1 changed files with 19 additions and 0 deletions
19
Formula/radare2.rb
Normal file
19
Formula/radare2.rb
Normal 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
|
Loading…
Reference in a new issue