diff options
| author | David Holm | 2014-02-23 16:12:57 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2014-03-07 20:40:40 -0800 |
| commit | 06dbc8dbde0990084631f197f0875eb4f9bf4896 (patch) | |
| tree | 114b75c2a17dbd293c9f3d3d2b1970853200daea /Library | |
| parent | c7a723046824d592bd7bd31f076100e132a8d2f5 (diff) | |
| download | homebrew-06dbc8dbde0990084631f197f0875eb4f9bf4896.tar.bz2 | |
valabind 0.8.0
Closes #26936.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/valabind.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/valabind.rb b/Library/Formula/valabind.rb new file mode 100644 index 000000000..9bbd4bb56 --- /dev/null +++ b/Library/Formula/valabind.rb @@ -0,0 +1,18 @@ +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 + depends_on 'swig' + depends_on 'vala' + + def install + system 'make' + system 'make', 'install', "PREFIX=#{prefix}" + end +end |
