aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Pintozzi2012-08-21 10:00:19 -0500
committerAdam Vandenberg2012-10-02 11:45:19 -0700
commit25603eb47a3ccbb33fa764f5045ff14e2e81f34d (patch)
tree772b2878a2f7bc4477b2145f2279c551fd2973f8
parent592a3bcb0d8f706c52bdcb5c4963ae6009416164 (diff)
downloadhomebrew-25603eb47a3ccbb33fa764f5045ff14e2e81f34d.tar.bz2
jnettop 0.13.0
Closes #14348. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/jnettop.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/jnettop.rb b/Library/Formula/jnettop.rb
new file mode 100644
index 000000000..2ac2eb1ce
--- /dev/null
+++ b/Library/Formula/jnettop.rb
@@ -0,0 +1,17 @@
+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