|
Revision 7271, 459 bytes
(checked in by typester, 9 months ago)
|
|
initial import
|
| Line | |
|---|
| 1 | use inc::Module::Install; |
|---|
| 2 | |
|---|
| 3 | name 'Camr'; |
|---|
| 4 | all_from 'lib/Camr.pm'; |
|---|
| 5 | |
|---|
| 6 | requires 'Catalyst::Runtime' => '5.7011'; |
|---|
| 7 | requires 'Catalyst::Plugin::ConfigLoader'; |
|---|
| 8 | requires 'Catalyst::Plugin::Static::Simple'; |
|---|
| 9 | requires 'Catalyst::Action::RenderView'; |
|---|
| 10 | requires 'YAML'; # This should reflect the config file format you've chosen |
|---|
| 11 | # See Catalyst::Plugin::ConfigLoader for supported formats |
|---|
| 12 | catalyst; |
|---|
| 13 | |
|---|
| 14 | install_script glob('script/*.pl'); |
|---|
| 15 | auto_install; |
|---|
| 16 | WriteAll; |
|---|