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

class Osxutils < Formula
  homepage 'https://github.com/vasi/osxutils'
  head 'https://github.com/vasi/osxutils.git'
  url 'https://github.com/vasi/osxutils/archive/v1.8.1.tar.gz'
  sha1 'b6c0e2b0c699a4bf9d51c582c8107ce40cfdec8b'

  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
end