File: my-meta

package info (click to toggle)
raku-meta6 0.0.30-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 536 kB
  • sloc: makefile: 4
file content (29 lines) | stat: -rwxr-xr-x 1,119 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env raku

use META6;

my $m = META6.new(   name           => 'META6',
                     description    => 'Work with Raku META files',
                     version        => Version.new('0.0.1'),
                     raku-version   => Version.new('6'),
                     depends        => ['JSON::Class>'],
                     test-depends   => <Test>,
                     tags           => <devel meta utils>,
                     authors        => ['Jonathan Stowe <jns+git@gellyfish.co.uk>'],
                     auth           => 'github:jonathanstowe',
                     source-url     => 'git://github.com/jonathanstowe/META6.git',
                     support        => META6::Support.new(
                            source => 'git://github.com/jonathanstowe/META6.git'
                        ),
                     provides       => {
                        META6 => 'lib/META6.pm',
                     },
                     license        => 'Artistic',
                     production     => False,

                 );

print $m.to-json;

# vim: expandtab shiftwidth=4 ft=raku