a2ee71cf63
Closes Homebrew/homebrew#22989. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
17 lines
376 B
Ruby
17 lines
376 B
Ruby
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
|