homebrew-core/Formula/jnettop.rb
Joe Pintozzi dabd7c26ba jnettop 0.13.0
Closes Homebrew/homebrew#14348.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-10-02 11:45:19 -07:00

17 lines
467 B
Ruby

require 'formula'
class Jnettop < Formula
homepage 'http://jnettop.kubs.info/'
url 'http://jnettop.kubs.info/dist/jnettop-0.13.0.tar.gz'
sha1 '59f4c28db6f8b1c58050d72aaa4b3b6d5a4a75e0'
depends_on 'pkg-config' => :build
depends_on 'glib'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--man=#{man}"
system "make install"
end
end