root/ext/Set/Makefile.PL

Revision 11293, 464 bytes (checked in by Darren_Duncan, 3 years ago)

replaced all 'use v6;' lines with 'use v6-alpha;' in 330 files (examples/, ext/, t/, t_disabled/) ... more remain to do

  • Property svn:mime-type set to text/plain; charset=UTF-8
  • Property svn:eol-style set to native
Line 
1use strict;
2use lib "../..", "../../inc";
3use inc::Module::Install prefix => '../../inc';
4
5name       ('Set');
6version    ('0.01');
7abstract   ('Set Perl 6 extension');
8author     ('Sam "mugwump" Vilain');
9license    ('perl');
10
11WritePugs  (6);
12
13#use v6-alpha;
14#
15#require Perl6::MakeMaker;
16#
17#WriteMakefile(
18#    'NAME' => 'Set',
19#    'VERSION_FROM' => 'lib/Set.pm',
20#    'PREREQ_PM' => {
21#        'Test' => '0.0.2', # but only for the test suite
22#    },
23#);
24#
25#1;
Note: See TracBrowser for help on using the browser.