aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/apiextractor.rb
blob: 6ac6b0a2c82052198a89900d1bf98e29ae4c28c4 (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://www.pyside.org/files/apiextractor-0.10.10.tar.bz2'
  md5 '7cdf6bdbf161e15b8bc5e98df86f95ee'

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

  def install
    system "cmake", ".", *std_cmake_args
    system "make install"
  end
end