aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/osxutils.rb
blob: b53581059d3bd3b9463c226b8ec1b9b21a1645b4 (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.tar.gz'
  sha1 'c3d20da36ecfae3abff07f482a572b3680a12b6d'

  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