New formula for APIExtractor

APIExtractor is a library for recovering Qt API information by parsing header
files. APIExtractor is used by Shiboken, the generator that produces the PySide
Python bindings for Qt.
This commit is contained in:
Charlie Sharpsteen 2011-06-16 13:08:44 -07:00
parent 6c8629d14f
commit d9ffc717f1

15
Formula/apiextractor.rb Normal file
View file

@ -0,0 +1,15 @@
require 'formula'
class Apiextractor < Formula
homepage 'http://www.pyside.org/docs/apiextractor'
url 'http://pyside.org/files/apiextractor-0.10.6.tar.bz2'
md5 '85c3b00d04ad6f5f885caa002b2ae772'
depends_on 'cmake' => :build
depends_on 'qt'
def install
system "cmake . #{std_cmake_parameters}"
system "make install"
end
end