diff options
| -rw-r--r-- | Library/Formula/cowpatty.rb | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/Library/Formula/cowpatty.rb b/Library/Formula/cowpatty.rb new file mode 100644 index 000000000..08494c5c8 --- /dev/null +++ b/Library/Formula/cowpatty.rb @@ -0,0 +1,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 | 
