diff options
| author | Yuval Adam | 2012-01-23 11:52:22 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2012-03-10 18:01:40 -0800 |
| commit | 620c037f4a612ea3449e31629d33a38176ae0b3e (patch) | |
| tree | b6f369cf15e399fbc950aaecc9704274a58c5f16 /Library | |
| parent | 318122210cbb31b680abd7ce83299d71d91ad763 (diff) | |
| download | homebrew-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.rb | 15 |
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 |
