8b275c916a
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
283 B
Ruby
15 lines
283 B
Ruby
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
|