diff options
| author | Jack Nagel | 2013-06-03 17:28:57 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-06-03 17:28:57 -0500 |
| commit | 2d15b1ae6efcd1751fc5a9e0f9667ed1bba8582f (patch) | |
| tree | 15120d59e25ab0632737a393a069b87936a71113 /Library | |
| parent | b4592a59dc0ec528322ae75cd74bef2f489ba657 (diff) | |
| download | homebrew-2d15b1ae6efcd1751fc5a9e0f9667ed1bba8582f.tar.bz2 | |
pyside: fix shiboken dep
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/pyside.rb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Library/Formula/pyside.rb b/Library/Formula/pyside.rb index 7b6abf6c6..172f025b2 100644 --- a/Library/Formula/pyside.rb +++ b/Library/Formula/pyside.rb @@ -9,7 +9,13 @@ class Pyside < Formula depends_on 'cmake' => :build depends_on :python => :recommended depends_on :python3 => :optional - depends_on 'shiboken' => 'with-python3' if build.with? 'python3' + + if build.with? 'python3' + depends_on 'shiboken' => 'with-python3' + else + depends_on 'shiboken' + end + depends_on 'qt' def install |
