aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/shiboken.rb
blob: 5a3f0050d458dcf78a1e826df0783e57f46c3163 (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", ".", "-DBUILD_TESTS=OFF", *std_cmake_args
    system "make install"
  end
end