aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAlexandre Porcelli2013-10-02 08:11:33 -0300
committerAdam Vandenberg2013-11-04 20:53:05 -0800
commit5b9cc06d51442ccf7fe9fc5e7e9d750670163739 (patch)
tree38d1ffcb9a797fe072eaf198ddf703a388afe576 /Library
parent16ac6b29f42682d7fbe332fe4df722b61b1143d5 (diff)
downloadhomebrew-5b9cc06d51442ccf7fe9fc5e7e9d750670163739.tar.bz2
jvmtop 0.8.0
Closes #22989. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/jvmtop.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/jvmtop.rb b/Library/Formula/jvmtop.rb
new file mode 100644
index 000000000..21ebe9721
--- /dev/null
+++ b/Library/Formula/jvmtop.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class Jvmtop < Formula
+ homepage 'https://code.google.com/p/jvmtop/'
+ url 'https://jvmtop.googlecode.com/files/jvmtop-0.8.0.tar.gz'
+ sha1 '36b8980fb2b34d83ea3e91438f71afc4482df66c'
+
+ def install
+ rm Dir['*.bat']
+ mv 'jvmtop.sh', 'jvmtop'
+ chmod 0755, 'jvmtop'
+
+ libexec.install Dir['*']
+
+ bin.write_exec_script libexec/'jvmtop'
+ end
+end