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