diff options
| author | Adam Vandenberg | 2014-05-20 09:52:50 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2014-05-20 09:54:11 -0700 |
| commit | cbe121ae7698fb9489c1ac9c6a6b58cce6769dce (patch) | |
| tree | 48d2dd43e2db8e32ede134bc80e4c9a4428cf821 /Library | |
| parent | f821e86c870de7d7753d1be44858643c0048aafd (diff) | |
| download | homebrew-cbe121ae7698fb9489c1ac9c6a6b58cce6769dce.tar.bz2 | |
valabind: quotes
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/valabind.rb | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/Library/Formula/valabind.rb b/Library/Formula/valabind.rb index 293befb44..03acc4d3f 100644 --- a/Library/Formula/valabind.rb +++ b/Library/Formula/valabind.rb @@ -1,23 +1,22 @@ -require 'formula' +require "formula" class Valabind < Formula - homepage 'http://radare.org/' - url 'https://github.com/radare/valabind/archive/0.8.0.tar.gz' - sha1 'f677110477e14c2e18ac61c56730ab0e51ac450d' + homepage "http://radare.org/" + head "https://github.com/radare/valabind.git" + 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' => :run - depends_on 'vala' + depends_on "pkg-config" => :build + depends_on "swig" => :run + depends_on "vala" # Fixes an issue in the vala version detection script. - # * https://github.com/radare/valabind/pull/24 + # https://github.com/radare/valabind/pull/24 patch :DATA def install - system 'make' - system 'make', 'install', "PREFIX=#{prefix}" + system "make" + system "make", "install", "PREFIX=#{prefix}" end end |
