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 <dominyktiller@gmail.com>
This commit is contained in:
Dominyk Tiller 2015-07-26 22:37:31 +01:00
parent 8febe327b4
commit a71a0d351d

View file

@ -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