homebrew-core/Formula/pyp.rb
Yuval Adam e48bd6d004 Pyp 2.10
Closes Homebrew/homebrew#9737.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-03-10 18:01:40 -08:00

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