diff options
Diffstat (limited to 'Library/Formula')
| -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 |
