aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/greg.rb
blob: 4ecd5c99032db0455ec3629ae224c586711b3798 (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