diff options
| author | Jeff Putsch | 2010-05-25 09:15:30 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2010-07-09 16:18:15 -0700 |
| commit | 328747d2faa8c42faaa97a0ffee532230d8f51e0 (patch) | |
| tree | 796b4437a527227a5fc047c2b619573caddc9817 /Library/Formula | |
| parent | 7cde82d01b2699476f43930bc1bab890c199240c (diff) | |
| download | homebrew-328747d2faa8c42faaa97a0ffee532230d8f51e0.tar.bz2 | |
Added formula for lmutil
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/lmutil.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/lmutil.rb b/Library/Formula/lmutil.rb new file mode 100644 index 000000000..c7a5d676b --- /dev/null +++ b/Library/Formula/lmutil.rb @@ -0,0 +1,18 @@ +require 'formula' + +class Lmutil <Formula + url 'http://www.globes.com/products/utilities/v11.8/lmutil_universal_mac10.tar.gz' + version '11.8' + homepage 'http://www.globes.com/support/fnp_utilities_download.htm' + md5 '9754ab4101edf450de31454b6da0eec3' + + # Stripping the binaries would invalidate the code signatures + skip_clean ['bin'] + + def install + bin.install 'lmutil' + chmod 0755, bin+'lmutil' + ln_s bin+'lmutil', bin+'lmstat' + ln_s bin+'lmutil', bin+'lmdiag' + end +end |
