c7630f5ff4
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
17 lines
470 B
Ruby
17 lines
470 B
Ruby
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'
|
|
|
|
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"
|
|
end
|
|
end
|