| | 81 | |
| | 82 | === Distribution of Plugins and other packages === |
| | 83 | |
| | 84 | TBD. |
| | 85 | |
| | 86 | The use of the release.pl script as above |
| | 87 | |
| | 88 | No need to keep MANIFEST and META.yml in version control! |
| | 89 | |
| | 90 | Add to MANIFEST.SKIP |
| | 91 | {{{ |
| | 92 | # avoid po and pot files (gettext) |
| | 93 | \.pot$ |
| | 94 | \.po$ |
| | 95 | }}} |
| | 96 | |
| | 97 | |
| | 98 | If you are using Module::Build |
| | 99 | |
| | 100 | Don't add a Makefile.PL to the version control as it will be created during packaging |
| | 101 | |
| | 102 | Add the following to Build.PL to include the generated .mo files |
| | 103 | {{{ |
| | 104 | $builder->add_build_element('mo'); |
| | 105 | }}} |