diff options
| author | Jesse Storimer | 2010-02-01 16:26:52 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2010-05-05 07:41:03 -0700 |
| commit | 00242368e2a108373cfe782a4c0eb2eb8bb6e226 (patch) | |
| tree | 06e0b51a6a599ee44d8f13aa71e99aff0f369f96 /Library | |
| parent | 6c4607d54bd472aaa62391594d070794c4e97fec (diff) | |
| download | homebrew-00242368e2a108373cfe782a4c0eb2eb8bb6e226.tar.bz2 | |
Added lorem ipsum generator!
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
* Use file from Google Code, not the gist.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/lorem.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/lorem.rb b/Library/Formula/lorem.rb new file mode 100644 index 000000000..292f8a6b8 --- /dev/null +++ b/Library/Formula/lorem.rb @@ -0,0 +1,17 @@ +require 'formula' + +class Lorem < Formula + url 'http://lorem.googlecode.com/svn-history/r4/trunk/lorem' + version '0.6.1' + homepage 'http://code.google.com/p/lorem/' + md5 '1246debbcb718aa56935e52136df17e8' + + aka 'ipsum' + + def download_strategy; CurlDownloadStrategy; end + + def install + inreplace "lorem", "!/usr/bin/python", "!/usr/bin/env python" + bin.install "lorem" + end +end |
