e48bd6d004
Closes Homebrew/homebrew#9737. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
273 B
Ruby
15 lines
273 B
Ruby
require 'formula'
|
|
|
|
class Pyp < Formula
|
|
homepage 'http://code.google.com/p/pyp/'
|
|
url 'http://pyp.googlecode.com/svn/trunk', :revision => "216"
|
|
version '2.10'
|
|
|
|
def install
|
|
bin.install 'pyp'
|
|
end
|
|
|
|
def test
|
|
system "whoami | #{bin}/pyp 'p.upper()'"
|
|
end
|
|
end
|