Ticket #26494: Portfile.3

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

Portfile for devel/shiboken

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            shiboken
9version         1.0.0-beta5
10#revision    1
11categories      devel
12platforms       macosx
13maintainers     openmaintainer
14description     Shiboken is a python-generation plugin for GeneratorRunner.
15long_description \
16                Shiboken is a plugin (front-end) for Generator Runner. \
17                It generates bindings for C++ libraries using CPython source code.
18homepage        http://www.pyside.org/
19master_sites    http://www.pyside.org/files/
20distname        shiboken-[join [split ${version} "-"] "~"]
21use_bzip2           yes
22dist_subdir         devel
23
24depends_lib-append      port:generatorrunner
25
26checksums           md5     0b3f6bc9d6ec16ddb397e9ea8e6ec6c8 \
27                    sha1    581c306502a7501d8d4361ffdd402528c417b441 \
28                    rmd160  992ebe23d1d9330bb3eef34c6277a86b7ab1b449
29
30worksrcdir          ${distname}/build
31
32configure.args-append   ..
33
34post-extract {
35    # Need to create the build dir:
36    file mkdir ${worksrcpath}
37}
38