| Revision 5526,
462 bytes
checked in by ryan52, 3 years ago
(diff) |
|
run module-starter
|
| Line | |
|---|
| 1 | use strict; |
|---|
| 2 | use warnings; |
|---|
| 3 | use Module::Build; |
|---|
| 4 | |
|---|
| 5 | my $builder = Module::Build->new( |
|---|
| 6 | module_name => 'Locale::Msgfmt', |
|---|
| 7 | license => 'perl', |
|---|
| 8 | dist_author => 'Ryan Niebur <ryanryan52@gmail.com>', |
|---|
| 9 | dist_version_from => 'lib/Locale/Msgfmt.pm', |
|---|
| 10 | build_requires => { |
|---|
| 11 | 'Test::More' => 0, |
|---|
| 12 | }, |
|---|
| 13 | add_to_cleanup => [ 'Locale-Msgfmt-*' ], |
|---|
| 14 | create_makefile_pl => 'traditional', |
|---|
| 15 | ); |
|---|
| 16 | |
|---|
| 17 | $builder->create_build_script(); |
|---|
Note: See
TracBrowser
for help on using the repository browser.