65d9960c9f
Also updates dependencies: - apiextractor - generatorrunner - shiboken
20 lines
518 B
Ruby
20 lines
518 B
Ruby
require 'formula'
|
|
|
|
class Shiboken < Formula
|
|
homepage 'http://www.pyside.org/docs/shiboken'
|
|
url 'http://pyside.org/files/shiboken-1.0.9.tar.bz2'
|
|
md5 'c33a25a64a06320e495e8b8775b8918c'
|
|
|
|
depends_on 'cmake' => :build
|
|
|
|
depends_on 'generatorrunner'
|
|
depends_on 'apiextractor'
|
|
depends_on 'qt'
|
|
|
|
def install
|
|
# Building the tests also runs them. Not building and running tests cuts
|
|
# install time in half.
|
|
system "cmake . #{std_cmake_parameters} -DBUILD_TESTS=OFF"
|
|
system "make install"
|
|
end
|
|
end
|