Skip to content

Commit

Permalink
Corrected some bad spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasbn committed Mar 18, 2024
1 parent 566559f commit 2e4fc9f
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 10 deletions.
4 changes: 4 additions & 0 deletions .wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2082,3 +2082,7 @@ Atbash
substr
Nim
nim
reqreq
HTTPie
pytest
pragmaticlinux
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Do note:

Another example is for `perlcritic`, the dominant linter for Perl.

When you alter your Perl::Critic configuration outlined in the `perlcriticrc` file, you can run check your source code against the new configuration. This is a good practice when adopting a new Perl::Critic configuration or when starting to use Perl::Critic on a project, which has not been _critized_ before.
When you alter your Perl::Critic configuration outlined in the `perlcriticrc` file, you can run check your source code against the new configuration. This is a good practice when adopting a new Perl::Critic configuration or when starting to use Perl::Critic on a project, which has not been _criticized_ before.

```bash
ls t/perlcritic.rc |entr -c sh -c 'perlcritic --profile /_ lib'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ $ perl Makefile.PL --parilib=~/pari-2.1.7 LIB=~/dev/project/local/lib
$ make && make test && make install
```

And the product of your build should end up in the right place. Do note the `lib` and the end of the path, which is one of the standard directories in local maintained by `carton`.
And the product of your build should end up in the right place. Do note the `lib/` and the end of the path, which is one of the standard directories in `local/` maintained by `carton`.

## References

- [MetaCPAN: ExtUtils::MakeMaker](https://metacpan.org/pod/ExtUtils::MakeMaker#PREFIX-and-LIB-attribute)
- [MetaCPAN: ExtUtils::MakeMaker][extutils]

[extutils]: https://metacpan.org/pod/ExtUtils::MakeMaker#PREFIX-and-LIB-attribute
19 changes: 12 additions & 7 deletions perl/module-install.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
# Module::Install

Module::Install is a CPAN compatible packaging tool aimed to address some of the short comings of earlier implementations like ExtUtils::MakeMaker and Module::Build.
[Module::Install][install] is a CPAN compatible packaging tool aimed to address some of the short comings of earlier implementations like [ExtUtils::MakeMaker][extutils] and Module::Build.

It's use is not longer recommended and newer tools like Dist::Zilla etc. should be used, but Module::Install is widely used so you often come across distributions, which rely on Module::Install, well you even come across distributions, which rely on the predecessors.
It's use is not longer recommended and newer tools like [Dist::Zilla][dzil] etc. should be used, but [Module::Install][install] is widely used so you often come across distributions, which rely on [Module::Install][install], well you even come across distributions, which rely on the predecessors.

When Module::Install is used, the `inc/`
When [Module::Install][install] is used, the `inc/`

TODO

## Resources and References

- Module::Install
- ExtUtils:.MakeMaker
- Module::Build
- Dist::Zilla
- [Module::Install][install]
- [ExtUtils::MakeMaker][extutils]
- [Module::Build][build]
- [Dist::Zilla][dzil]

[dzil]: https://metacpan.org/pod/Dist::Zilla
[extutils]: https://metacpan.org/pod/ExtUtils::MakeMaker
[build]: https://metacpan.org/pod/Module::Build
[install]: https://metacpan.org/pod/Module::Install

0 comments on commit 2e4fc9f

Please sign in to comment.