Ticket #26494: Portfile

File Portfile, 1.1 KB (added by list-ener@…, 13 years ago)

Portfile for devel/apiextractor

Line 
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
4PortSystem      1.0
5PortGroup   qt4 1.0
6PortGroup   cmake 1.0
7
8name            apiextractor
9version         0.9.4
10#revision    1
11categories      devel
12platforms       macosx
13maintainers     openmaintainer
14description     API Extractor is a tool for binding generators for Qt-libraries.
15long_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.
18homepage        http://www.pyside.org/
19master_sites    http://www.pyside.org/files/
20distname        apiextractor-${version}
21use_bzip2           yes
22dist_subdir         devel
23
24checksums           md5     25a00ab12b1f4f9e7376a8d0416cad1a \
25                    sha1    16330723e785a1051ee8680846c4f28610b54be7 \
26                    rmd160  d514407e5fcec40380becb5dd1b00dc46c7ecb4a
27
28worksrcdir          ${distname}/build
29
30configure.args-append   ..
31
32post-extract {
33    # Need to create the build dir:
34    file mkdir ${worksrcpath}
35}