homebrew-core/Formula/osxutils.rb
Timothy Sutton da670c34de Remove conflict line referencing non-existant googlecl
- googlecl was removed in Homebrew/homebrew#42245
- minor style updates to pass brew audit --strict

Closes Homebrew/homebrew#43622.

Signed-off-by: Xu Cheng <xucheng@me.com>
2015-09-06 15:41:30 +08:00

27 lines
874 B
Ruby

class Osxutils < Formula
desc "CLI access of Mac-specific information, settings, and metadata"
homepage "https://github.com/vasi/osxutils"
url "https://github.com/vasi/osxutils/archive/v1.8.1.tar.gz"
sha256 "26c49f00435d2b58a3768f0712d25afc09139e91994ba2bdaa21915004214186"
head "https://github.com/vasi/osxutils.git"
bottle do
cellar :any
sha1 "b2b540572693c94922b19b7109fb337bc45ffddf" => :yosemite
sha1 "1f29480eab579c4f97606aabe89d8b39c1c440dd" => :mavericks
sha1 "a76a3906847c9bdfa934ee46c7bcdeee772f1c26" => :mountain_lion
end
conflicts_with "trash", :because => "both install a trash binary"
conflicts_with "leptonica",
:because => "both leptonica and osxutils ship a `fileinfo` executable."
def install
system "make"
system "make", "PREFIX=#{prefix}", "install"
end
test do
system "#{bin}/trash"
end
end