Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Best practices for local libraries

by haukex (Archbishop)
on Dec 07, 2019 at 09:49 UTC ( [id://11109793]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    ~/dev/MyModule/Makefile.PL
    ~/dev/MyModule/lib/Local/Math/EM.pm    # Local::Math::EM
    ...
    ~/dev/MyModule/lib/Local/Math/Log2.pm  # Local::Math::Log2
    ~/dev/MyModule/bin/script.pl
    ~/dev/MyModule/t/*.t                   # (optional but recommended)
    
  2. or download this
    use ExtUtils::MakeMaker;
    WriteMakefile(
    ...
        VERSION   => '0.01',
        EXE_FILES => [ 'bin/script.pl' ],
    );
    
  3. or download this
    make distclean    # if you've previously run "perl Makefile.PL"
    perl Makefile.PL
    make manifest
    make dist         # will create a Local-Math-0.01.tar.gz for you!
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11109793]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (2)
As of 2024-04-25 20:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found