|
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 | |
|---|
| 1 | use strict; |
|---|
| 2 | use lib "../..", "../../inc"; |
|---|
| 3 | use inc::Module::Install prefix => '../../inc'; |
|---|
| 4 | |
|---|
| 5 | name ('Set'); |
|---|
| 6 | version ('0.01'); |
|---|
| 7 | abstract ('Set Perl 6 extension'); |
|---|
| 8 | author ('Sam "mugwump" Vilain'); |
|---|
| 9 | license ('perl'); |
|---|
| 10 | |
|---|
| 11 | WritePugs (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; |
|---|