homebrew-core/Formula/shiboken.rb
Charlie Sharpsteen a804e053ab New formula for Shiboken
Shiboken is a plugin for GeneratorRunner that handles the generation of CPython
bindings to C++ libraries. Shiboken is used to compile PySide.
2011-08-25 17:47:22 -07:00

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.6.tar.bz2'
md5 'd52f0dfdc1a63534085547946e4b5fff'
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