88779ade49
Closes Homebrew/homebrew#14653.
14 lines
357 B
Ruby
14 lines
357 B
Ruby
require 'formula'
|
|
|
|
class Lorem < Formula
|
|
url 'http://lorem.googlecode.com/svn-history/r4/trunk/lorem',
|
|
:using => :curl
|
|
version '0.6.1'
|
|
homepage 'http://code.google.com/p/lorem/'
|
|
sha1 'aa6ef66e5ee1151397f19b358d772af316cf333b'
|
|
|
|
def install
|
|
inreplace "lorem", "!/usr/bin/python", "!/usr/bin/env python"
|
|
bin.install "lorem"
|
|
end
|
|
end
|