Added lorem ipsum generator!

Signed-off-by: Adam Vandenberg <flangy@gmail.com>

* Use file from Google Code, not the gist.
This commit is contained in:
Jesse Storimer 2010-02-01 16:26:52 -05:00 committed by Adam Vandenberg
parent 66b4ab39a9
commit 60670cd1d7

17
Formula/lorem.rb Normal file
View file

@ -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