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 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup xcode 1.0 |
---|
6 | |
---|
7 | name QMK-Groundstation |
---|
8 | version 0.7.0 |
---|
9 | maintainers lilalinux.net:macports |
---|
10 | description Configuration and Debugging Utility for the MikroKopter Project |
---|
11 | long_description Configuration and Debugging Utility for the MikroKopter Project. |
---|
12 | homepage http://www.mikrokopter.de/ |
---|
13 | |
---|
14 | depends_lib-append port:qwt |
---|
15 | |
---|
16 | fetch.type svn |
---|
17 | svn.url http://mikrocontroller.cco-ev.de/mikrosvn/Projects/${name}/tags/V${version}/ |
---|
18 | worksrcdir V${version} |
---|
19 | |
---|
20 | configure.cmd ${prefix}/bin/qmake-mac |
---|
21 | configure.pre_args -spec macx-xcode osx.pro |
---|
22 | use_configure yes |
---|
23 | |
---|
24 | post-build { |
---|
25 | delete ${worksrcpath}/build/bin/${name}.app |
---|
26 | } |
---|
27 | |
---|
28 | destroot { |
---|
29 | set appPath ${destroot}${applications_dir} |
---|
30 | xinstall -d -m 755 ${appPath} |
---|
31 | file copy ${worksrcpath}/build/Default/${name}.app ${appPath}/${name}.app |
---|
32 | } |
---|