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:
parent
6c8629d14f
commit
d9ffc717f1
1 changed files with 15 additions and 0 deletions
15
Formula/apiextractor.rb
Normal file
15
Formula/apiextractor.rb
Normal 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
|
Loading…
Reference in a new issue