aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/shiboken.rb
blob: d234735228e35f3622c34c3663e5f35f116fc314 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 #{std_cmake_parameters} -DBUILD_TESTS=OFF ."
    system "make install"
  end
end