homebrew-core/Formula/jnettop.rb

18 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