Ticket #18171: Portfile

File Portfile, 1.1 KB (added by macports@…, 15 years ago)

Patched version from 0.6.3 to 0.7.0

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; truncate-lines: t -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4
2# $Id: Portfile 45065 2009-01-08 00:00:15Z macsforever2000@macports.org $
3
4PortSystem          1.0
5PortGroup           xcode 1.0
6
7name                QMK-Groundstation
8version             0.7.0
9maintainers         lilalinux.net:macports
10description         Configuration and Debugging Utility for the MikroKopter Project
11long_description    Configuration and Debugging Utility for the MikroKopter Project.
12homepage            http://www.mikrokopter.de/
13
14depends_lib-append  port:qwt
15
16fetch.type          svn
17svn.url             http://mikrocontroller.cco-ev.de/mikrosvn/Projects/${name}/tags/V${version}/
18worksrcdir          V${version}
19
20configure.cmd       ${prefix}/bin/qmake-mac
21configure.pre_args  -spec macx-xcode osx.pro
22use_configure       yes
23
24post-build {
25        delete ${worksrcpath}/build/bin/${name}.app
26}
27
28destroot {
29        set appPath ${destroot}${applications_dir}
30        xinstall -d -m 755 ${appPath}
31        file copy ${worksrcpath}/build/Default/${name}.app ${appPath}/${name}.app
32}