diff options
| author | Adam Vandenberg | 2012-02-25 15:22:32 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2012-02-25 15:22:32 -0800 |
| commit | dfcc838b6640466dced2d51b8c31299af3f52940 (patch) | |
| tree | fbbb2b179e4a27e83bd96f6464952dfbe47f51f3 /Library/Formula/pypy.rb | |
| parent | 72b53178c384cfb44277b3632df59892620ce17e (diff) | |
| download | homebrew-dfcc838b6640466dced2d51b8c31299af3f52940.tar.bz2 | |
Add "require hardware" to formula.rb
Now individual formulae don't need to require this if they want to use
Hardware methods outside of `def install`.
Diffstat (limited to 'Library/Formula/pypy.rb')
| -rw-r--r-- | Library/Formula/pypy.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/pypy.rb b/Library/Formula/pypy.rb index cd33ceccc..fa0c53954 100644 --- a/Library/Formula/pypy.rb +++ b/Library/Formula/pypy.rb @@ -1,7 +1,8 @@ require 'formula' -require 'hardware' class Pypy < Formula + homepage 'http://pypy.org/' + if MacOS.prefer_64_bit? url 'https://bitbucket.org/pypy/pypy/downloads/pypy-1.8-osx64.tar.bz2' md5 '1c293253e8e4df411c3dd59dff82a663' @@ -11,7 +12,6 @@ class Pypy < Formula md5 '8584c4e8c042f5b661fcfffa0d9b8a25' version '1.4.1' end - homepage 'http://pypy.org/' def install prefix.install Dir['*'] |
