1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name cockatrice |
---|
7 | version 0.1 |
---|
8 | categories games |
---|
9 | platforms darwin |
---|
10 | maintainers nomaintainer |
---|
11 | description The Cockatrice Game Client |
---|
12 | long_description The Cockatrice Game Client used for plaing various card games online. |
---|
13 | homepage http://www.woogerworks.com |
---|
14 | |
---|
15 | #PortGroup qt4 1.0 |
---|
16 | PortGroup cmake 1.0 |
---|
17 | |
---|
18 | fetch.type git |
---|
19 | git.url https://github.com/Daenyth/Cockatrice |
---|
20 | |
---|
21 | depends_lib port:protobuf-cpp \ |
---|
22 | port:qt4-mac |
---|
23 | |
---|
24 | #configure.pre_args -DCMAKE_INSTALL_PREFIX=${applications_dir} |
---|
25 | post-destroot { |
---|
26 | xinstall -d ${destroot}${applications_dir}/Cockatrice |
---|
27 | |
---|
28 | copy ${worksrcpath}/cockatrice/cockatrice.app \ |
---|
29 | ${destroot}${applications_dir}/Cockatrice |
---|
30 | |
---|
31 | copy ${worksrcpath}/oracle/oracle.app \ |
---|
32 | ${destroot}${applications_dir}/Cockatrice |
---|
33 | } |
---|