homebrew-core/Formula/valkyrie.rb
2016-04-15 20:29:05 +08:00

21 lines
610 B
Ruby

class Valkyrie < Formula
desc "GUI for Memcheck and Helgrind tools in Valgrind 3.6.X"
homepage "http://valgrind.org/downloads/guis.html"
url "http://valgrind.org/downloads/valkyrie-2.0.0.tar.bz2"
sha256 "a70b9ffb2409c96c263823212b4be6819154eb858825c9a19aad0ae398d59b43"
head "svn://svn.valgrind.org/valkyrie/trunk"
bottle do
sha256 "7992f813d519d4e70a4f1c140e664f5ffa47fea263433a1af2a0368a22754a24" => :yosemite
end
depends_on "qt"
depends_on "valgrind"
def install
system "qmake", "PREFIX=#{prefix}"
system "make", "install"
prefix.install bin/"valkyrie.app"
end
end