Ticket #39747: Portfile

File Portfile, 1.0 KB (added by xineohp@…, 11 years ago)
Line 
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
4PortSystem    1.0
5
6name                  cockatrice
7version               0.1
8categories            games
9platforms             darwin
10maintainers           nomaintainer
11description           The Cockatrice Game Client
12long_description      The Cockatrice Game Client used for plaing various card games online.
13homepage              http://www.woogerworks.com
14
15#PortGroup     qt4 1.0
16PortGroup     cmake 1.0
17
18fetch.type            git
19git.url               https://github.com/Daenyth/Cockatrice
20
21depends_lib           port:protobuf-cpp \
22                      port:qt4-mac
23                     
24#configure.pre_args    -DCMAKE_INSTALL_PREFIX=${applications_dir}
25post-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}