aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/lorem.rb
blob: 292f8a6b87920ed5f8b55f2b638752e0cbc64b06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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