blob: d36541b28eb41dd2fbb7c13f22dd5683c2d53d98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Cowpatty < Formula
homepage 'http://www.willhackforsushi.com/Cowpatty.html'
url 'http://www.willhackforsushi.com/code/cowpatty/4.3/cowpatty-4.3.tgz'
md5 'deccac0763a05ef7014107d347bf9190'
def install
inreplace "Makefile", "/usr/local/", "#{prefix}/"
system "make install"
end
end
|