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

class Bashreduce < Formula
  homepage 'https://github.com/erikfrey/bashreduce'
  head 'https://github.com/erikfrey/bashreduce.git'

  def install
    bin.install "br"
    cd 'brutils' do
      system "make", "CFLAGS=#{ENV.cflags}", "BINDIR=#{bin}"
      bin.install "brp", "brm"
    end
  end
end