Ticket #18356: Portfile

File Portfile, 1.6 KB (added by davidstuartbruce@…, 15 years ago)

Portfile for new port - Tux Typing

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; \
2c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4
3# $Id$
4
5PortSystem          1.0
6
7name                tuxtype
8version             1.7.3
9revision            0
10categories          games education
11platforms           darwin
12maintainers         gmail.com:davidstuartbruce
13
14description         Learn to type with Tux, the Linux Penguin!
15long_description    Tux Typing is an SDL-based educational game intended for children but fun for all ages. \
16                    The program includes two video game-styled activities for typing individual words, \
17                    as well as a phrase/sentence typing activity that displays accuracy and words per \
18                    minute.
19
20homepage            http://www.tux4kids.com
21master_sites        http://alioth.debian.org/frs/download.php/2767/
22distname            ${name}_w_fonts-${version}
23
24checksums           md5  9b76e5ebb3daf3d93545dc561229e2a5 \
25                    sha1 8029c5484e1fac2bea764b9eef6f9845d0c725ce \
26                    rmd160 b7e10052582c894c272f591c5c907ae56a03b926
27
28depends_lib         port:libsdl \
29                    port:libsdl_image \
30                    port:libsdl_mixer \
31                    port:libsdl_ttf \
32                    port:libsdl_pango \
33                    port:gettext
34
35platform darwin {
36    post-destroot {
37        xinstall -m 755 -d ${destroot}/Applications/MacPorts/TuxType.app/Contents/MacOS
38        ln -s ${prefix}/bin/tuxtype ${destroot}/Applications/MacPorts/TuxType.app/Contents/MacOS/TuxType
39    }
40}