Bump version
[catagits/DOM-Tiny.git] / INSTALL
CommitLineData
d6512b50 1This is the Perl distribution DOM-Tiny.
2
3Installing DOM-Tiny is straightforward.
4
5## Installation with cpanm
6
7If you have cpanm, you only need one line:
8
9 % cpanm DOM::Tiny
10
11If you are installing into a system-wide directory, you may need to pass the
12"-S" flag to cpanm, which uses sudo to install the module:
13
14 % cpanm -S DOM::Tiny
15
16## Installing with the CPAN shell
17
18Alternatively, if your CPAN shell is set up, you should just be able to do:
19
20 % cpan DOM::Tiny
21
22## Manual installation
23
24As a last resort, you can manually install it. Download the tarball, untar it,
25then build it:
26
e5227dad 27 % perl Makefile.PL
28 % make && make test
d6512b50 29
30Then install it:
31
e5227dad 32 % make install
d6512b50 33
34If you are installing into a system-wide directory, you may need to run:
35
e5227dad 36 % sudo make install
d6512b50 37
38## Documentation
39
40DOM-Tiny documentation is available as POD.
41You can run perldoc from a shell to read the documentation:
42
43 % perldoc DOM::Tiny