2014-02-23 15:12:57 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Valabind < Formula
|
|
|
|
homepage 'http://radare.org/'
|
|
|
|
url 'https://github.com/radare/valabind/archive/0.8.0.tar.gz'
|
|
|
|
sha1 'f677110477e14c2e18ac61c56730ab0e51ac450d'
|
|
|
|
|
|
|
|
head 'https://github.com/radare/valabind.git'
|
|
|
|
|
|
|
|
depends_on 'pkg-config' => :build
|
2014-03-08 04:43:13 +00:00
|
|
|
depends_on 'swig' => :run
|
2014-02-23 15:12:57 +00:00
|
|
|
depends_on 'vala'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system 'make'
|
|
|
|
system 'make', 'install', "PREFIX=#{prefix}"
|
|
|
|
end
|
|
|
|
end
|