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

class Osxutils < Formula
  homepage 'https://github.com/vasi/osxutils'
  url 'https://github.com/vasi/osxutils/archive/v1.8.tar.gz'
  sha1 'c3d20da36ecfae3abff07f482a572b3680a12b6d'

  head 'https://github.com/vasi/osxutils.git'

  def install
    system 'make'
    system 'make', "PREFIX=#{prefix}", 'install'
  end
end