aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/lmutil.rb
blob: 443c5ff6dc7d4ff481c912e5e0e948d3e2ff46a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class Lmutil < Formula
  url 'http://www.globes.com/products/utilities/v11.10/lmutil_universal_mac10.tar.gz'
  version '11.10'
  homepage 'http://www.globes.com/support/fnp_utilities_download.htm'
  md5 '4a0f563167f30074177e0c39eccfaa99'

  # 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