aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/generatorrunner.rb
blob: 71bdef232229c406e1f5a5e3d875cc98cf9d692b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Generatorrunner < Formula
  homepage 'http://www.pyside.org/docs/generatorrunner'
  url 'http://pyside.org/files/generatorrunner-0.6.16.tar.bz2'
  md5 'c7011b8ee08e228779a769b7cfa90f5f'

  depends_on 'cmake' => :build

  depends_on 'apiextractor'

  def install
    system "cmake . #{std_cmake_parameters}"
    system "make install"
  end
end