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

class Apiextractor < Formula
  homepage 'http://www.pyside.org/docs/apiextractor'
  url 'http://pyside.org/files/apiextractor-0.10.7.tar.bz2'
  md5 '539be815e7fb09064fefcdb21ad44965'

  depends_on 'cmake' => :build
  depends_on 'qt'

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