Ticket #44173: Portfile

File Portfile, 985 bytes (added by kacnow@…, 10 years ago)
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$
3
4PortSystem          1.0
5
6PortGroup           cmake  1.0
7PortGroup           github 1.0
8
9fetch.type          git
10git.url             https://github.com/Daenyth/Cockatrice.git
11
12github.setup        Daenyth Cockatrice fb7de2a
13
14name                Cockatrice
15version             0.0.1
16         
17categories          games
18maintainers         sexyboy mk
19description         A board for playing trading card games like MTG online
20
21platforms           darwin
22license             GPL-2
23
24homepage            http://www.woogerworks.com/
25
26depends_lib-append  port:qt4-mac \
27                    port:protobuf-cpp
28
29
30destroot {
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}