aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/shiboken.rb18
1 files changed, 12 insertions, 6 deletions
diff --git a/Library/Formula/shiboken.rb b/Library/Formula/shiboken.rb
index 5a3f0050d..89fd78ac6 100644
--- a/Library/Formula/shiboken.rb
+++ b/Library/Formula/shiboken.rb
@@ -2,16 +2,22 @@ require 'formula'
class Shiboken < Formula
homepage 'http://www.pyside.org/docs/shiboken'
- url 'http://pyside.org/files/shiboken-1.1.0.tar.bz2'
- md5 '9c9d696c8c426fb5abf28a6bd3759558'
+ url 'http://pyside.org/files/shiboken-1.1.1.tar.bz2'
+ sha1 'd24efc1e7499e9d7db4dfc85a975291e3cb3f311'
depends_on 'cmake' => :build
- depends_on 'generatorrunner'
def install
# Building the tests also runs them. Not building and running tests cuts
- # install time in half.
- system "cmake", ".", "-DBUILD_TESTS=OFF", *std_cmake_args
- system "make install"
+ # install time in half. As of 1.1.1 the install fails unless you do an
+ # out of tree build and put the source dir last in the args.
+ mkdir 'macbuild' do
+ args = std_cmake_args + %W[
+ -DBUILD_TESTS=OFF
+ ..
+ ]
+ system 'cmake', *args
+ system "make install"
+ end
end
end