Ticket #37755: Portfile

File Portfile, 1.8 KB (added by nortcele, 11 years ago)

New version of p5-moo portfile (Moo 1.003001)

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
5PortGroup           perl5 1.0
6
7perl5.branches      5.8 5.10 5.12 5.14 5.16
8perl5.setup         Moo 1.003001 ../by-authors/id/M/MS/MSTROUT
9
10platforms           darwin
11maintainers         nomaintainer
12license             {Artistic-1 GPL}
13
14supported_archs     noarch
15
16description         Moo - Minimalist Object Orientation (with Moose compatiblity)
17
18long_description    This module is an extremely light-weight subset of Moose \
19                    optimised for rapid startup and \"pay only for what you \
20                    use\". \
21                    \
22                    It also avoids depending on any XS modules to allow simple \
23                    deployments. The name Moo is based on the idea that it \
24                    provides almost -- but not quite -- two thirds of Moose. \
25                    \
26                    Unlike Mouse this module does not aim at full \
27                    compatibility with Moose's surface syntax, preferring \
28                    instead of provide full interoperability via the metaclass \
29                    inflation capabilities described in \"MOO AND MOOSE\".
30
31checksums           sha256 51ffe9d5129b78582c9eac3de70803cf14ff526a9df4a0c394b48bc69fd7c250 \
32                    rmd160 b695ae0bd384d7a64087f6cb26a5f29303ffd006
33
34if {${perl5.major} != ""} {
35depends_lib-append  port:p${perl5.major}-devel-globaldestruction \
36                    port:p${perl5.major}-strictures \
37                    port:p${perl5.major}-role-tiny \
38                    port:p${perl5.major}-dist-checkconflicts \
39                    port:p${perl5.major}-module-runtime \
40                    port:p${perl5.major}-class-method-modifiers
41depends_build-append port:p${perl5.major}-test-fatal
42}