blob: 433545613eed7b3db78db24c1c00b68902fde35e (
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"
Dir.chdir 'brutils' do
system "make", "CFLAGS=#{ENV.cflags}", "BINDIR=#{bin}"
bin.install "brp", "brm"
end
end
end
|