Skip to content
This repository has been archived by the owner on Nov 13, 2023. It is now read-only.

Commit

Permalink
valkyrie 2.0
Browse files Browse the repository at this point in the history
valkyrie is a valgrind GUI

Closes Homebrew#12217.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
  • Loading branch information
jiahao authored and eproxus committed Jul 18, 2012
1 parent 5746e31 commit 10b45eb
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions Library/Formula/valkyrie.rb
@@ -0,0 +1,27 @@
require 'formula'

class Valkyrie < Formula
homepage 'http://valgrind.org/downloads/guis.html'
url 'http://valgrind.org/downloads/valkyrie-2.0.0.tar.bz2'
sha1 '999a6623eea5b7b8d59b55d59b8198f4fcd08add'

head 'svn://svn.valgrind.org/valkyrie/trunk', :using => :svn

depends_on 'qt'
depends_on 'valgrind'

def install
system "qmake", "PREFIX=#{prefix}"
system "make install"
prefix.install bin/'valkyrie.app'
end

def caveats; <<-EOS.undent
The application has been installed to:
#{prefix}/valkyrie.app
To link the application to a normal Mac OS X location:
brew linkapps
EOS
end
end

0 comments on commit 10b45eb

Please sign in to comment.