pyside: fix shiboken dep
This commit is contained in:
parent
c198084e44
commit
9e814e64cb
1 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue