blob: 21ebe9721e79a9cbd49cb5239c572288bc7ddec5 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
 |