aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorYuval Adam2012-01-23 11:52:22 +0200
committerAdam Vandenberg2012-03-10 18:01:40 -0800
commit620c037f4a612ea3449e31629d33a38176ae0b3e (patch)
treeb6f369cf15e399fbc950aaecc9704274a58c5f16 /Library
parent318122210cbb31b680abd7ce83299d71d91ad763 (diff)
downloadhomebrew-620c037f4a612ea3449e31629d33a38176ae0b3e.tar.bz2
Pyp 2.10
Closes #9737. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/pyp.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/pyp.rb b/Library/Formula/pyp.rb
new file mode 100644
index 000000000..98dc5d941
--- /dev/null
+++ b/Library/Formula/pyp.rb
@@ -0,0 +1,15 @@
+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