diff options
| author | Alexander Pakulov | 2013-03-14 22:47:01 +0300 |
|---|---|---|
| committer | Adam Vandenberg | 2013-03-20 13:38:46 -0700 |
| commit | 3ab49d82f91642329aca27d230ee2b839533609c (patch) | |
| tree | 1e19933cfd8b9c0fb179964b70aea2599027c476 /Library/Formula | |
| parent | 190c2d5ae003c5ba6895418f9c79572839af970a (diff) | |
| download | homebrew-3ab49d82f91642329aca27d230ee2b839533609c.tar.bz2 | |
jmxtrans 20121016
Closes #18076.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/jmxtrans.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/jmxtrans.rb b/Library/Formula/jmxtrans.rb new file mode 100644 index 000000000..f6ff9a4bd --- /dev/null +++ b/Library/Formula/jmxtrans.rb @@ -0,0 +1,15 @@ +require 'formula' + +class Jmxtrans < Formula + homepage 'https://github.com/jmxtrans/jmxtrans' + url 'https://github.com/downloads/jmxtrans/jmxtrans/jmxtrans-20121016-151320-36564abc7e.zip' + version '20121016' + sha1 '2b2dc4727de16a30e8b7ac84b9bb4cb7b1ea4a6f' + + def install + prefix.install_metafiles + libexec.install Dir['*'] + (libexec/'jmxtrans.sh').chmod 0755 + bin.install_symlink libexec/'jmxtrans.sh' => "jmxtrans" + end +end |
