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$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | PortGroup cmake 1.0 |
---|
7 | PortGroup github 1.0 |
---|
8 | |
---|
9 | fetch.type git |
---|
10 | git.url https://github.com/Daenyth/Cockatrice.git |
---|
11 | |
---|
12 | github.setup Daenyth Cockatrice fb7de2a |
---|
13 | |
---|
14 | name Cockatrice |
---|
15 | version 0.0.1 |
---|
16 | |
---|
17 | categories games |
---|
18 | maintainers sexyboy mk |
---|
19 | description A board for playing trading card games like MTG online |
---|
20 | |
---|
21 | platforms darwin |
---|
22 | license GPL-2 |
---|
23 | |
---|
24 | homepage http://www.woogerworks.com/ |
---|
25 | |
---|
26 | depends_lib-append port:qt4-mac \ |
---|
27 | port:protobuf-cpp |
---|
28 | |
---|
29 | |
---|
30 | destroot { |
---|
31 | xinstall -m 0755 -d ${destroot}${applications_dir} |
---|
32 | file copy ${worksrcpath}/cockatrice/Cockatrice.app ${destroot}${applications_dir} |
---|
33 | file copy ${worksrcpath}/oracle/oracle.app ${destroot}${applications_dir} |
---|
34 | } |
---|