blob: 0dfbd19bb3b0251d16e87891eb6d1584665a5430 (
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.2.tar.gz'
sha1 '7cfa170a59453d57361d730f4c4a1495d36930a8'
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
|