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

class Greg <Formula
  head 'https://github.com/nddrylliog/greg.git'
  homepage 'https://github.com/nddrylliog/greg'

  def install
    inreplace 'Makefile' do |s|
      s.change_make_var! "PREFIX", prefix
    end

    bin.mkdir
    system "make install"
  end
end