homebrew-core/Formula/qstat.rb
Victor Martinez 8dc451e3e2 Fixed several broken sourceforge.net download locations
Closes Homebrew/homebrew#20645.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-30 12:17:57 -07:00

14 lines
425 B
Ruby

require 'formula'
class Qstat < Formula
homepage 'http://qstat.sourceforge.net'
url 'http://downloads.sourceforge.net/project/qstat/qstat/qstat-2.11/qstat-2.11.tar.gz'
sha1 '107796ab7512bdfdd0c3bb06a3458432b39458c7'
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end