1 | # -*- coding: utf-8; mode: tcl; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 4; truncate-lines: t -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup qt4 1.0 |
---|
6 | PortGroup cmake 1.0 |
---|
7 | |
---|
8 | name apiextractor |
---|
9 | version 0.9.4 |
---|
10 | #revision 1 |
---|
11 | categories devel |
---|
12 | platforms macosx |
---|
13 | maintainers openmaintainer |
---|
14 | description API Extractor is a tool for binding generators for Qt-libraries. |
---|
15 | long_description \ |
---|
16 | API Extractor is a tool that eases the development of bindings \ |
---|
17 | of Qt-based libraries for high level languages by automating most of the process. |
---|
18 | homepage http://www.pyside.org/ |
---|
19 | master_sites http://www.pyside.org/files/ |
---|
20 | distname apiextractor-${version} |
---|
21 | use_bzip2 yes |
---|
22 | dist_subdir devel |
---|
23 | |
---|
24 | checksums md5 25a00ab12b1f4f9e7376a8d0416cad1a \ |
---|
25 | sha1 16330723e785a1051ee8680846c4f28610b54be7 \ |
---|
26 | rmd160 d514407e5fcec40380becb5dd1b00dc46c7ecb4a |
---|
27 | |
---|
28 | worksrcdir ${distname}/build |
---|
29 | |
---|
30 | configure.args-append .. |
---|
31 | |
---|
32 | post-extract { |
---|
33 | # Need to create the build dir: |
---|
34 | file mkdir ${worksrcpath} |
---|
35 | } |
---|