blob: 097dbab5a12fc4666f7accaff23ff203d21bd714 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Radare2 < Formula
homepage 'http://radare.org'
url 'http://radare.org/get/radare2-0.9.7.tar.xz'
sha1 '34af6c6ba53ac08c852b4e110ac6908054616b9d'
head 'http://radare.org/hg/radare2', :using => :hg
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
|