diff options
| author | Robert Iannucci | 2009-10-20 00:04:39 -0700 | 
|---|---|---|
| committer | Max Howell | 2009-10-21 02:55:42 +0100 | 
| commit | f03102824b1f21a880da991a0af63769fb4b2097 (patch) | |
| tree | dc97ebef76f5c74562d9cf623a85dd6ae6c2038f | |
| parent | 3f3da067f278c4e02a6398380fbd848a5175cb94 (diff) | |
| download | homebrew-f03102824b1f21a880da991a0af63769fb4b2097.tar.bz2 | |
cowpatties!
| -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 | 
