From a71a0d351daf76d3a2a9c7471427c39d8ffbd205 Mon Sep 17 00:00:00 2001 From: Dominyk Tiller Date: Sun, 26 Jul 2015 22:37:31 +0100 Subject: [PATCH] valabind: bump revision The test is awful, but is enough to raise an error when the dependencies' dylib versions change, as happened with the Vala update which broke the bottles here. If someone wants to write up a test binding and have Valabind use that for a real test, we'd welcome a PR! Closes Homebrew/homebrew#42098 Closes Homebrew/homebrew#42143. Signed-off-by: Dominyk Tiller --- Formula/valabind.rb | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Formula/valabind.rb b/Formula/valabind.rb index d465fce73a..5791015a66 100644 --- a/Formula/valabind.rb +++ b/Formula/valabind.rb @@ -1,9 +1,11 @@ class Valabind < Formula desc "Vala bindings for radare, reverse engineering framework" homepage "http://radare.org/" - head "https://github.com/radare/valabind.git" url "https://github.com/radare/valabind/archive/0.9.2.tar.gz" sha256 "84cc2be21acb671e737dab50945b3717f1c68917faf23af443d3911774f5e578" + revision 1 + + head "https://github.com/radare/valabind.git" bottle do cellar :any @@ -20,4 +22,8 @@ class Valabind < Formula system "make" system "make", "install", "PREFIX=#{prefix}" end + + test do + system bin/"valabind", "--help" + end end