blob: d680d55be5aea4df592c6d23826c1f1660a137c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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'
sha1 '8b7cb2015d0534031827f2f06135bf5cf5929d35'
def install
ENV.j1
inreplace "Makefile", "/usr/local/", "#{prefix}/"
system "make install"
end
end
|