~ubuntu-branches/ubuntu/wily/libxml-bare-perl/wily

« back to all changes in this revision

Viewing changes to INSTALL

  • Committer: Package Import Robot
  • Author(s): Nuno Carvalho, gregor herrmann, Salvatore Bonaccorso, Axel Beckert, Nuno Carvalho
  • Date: 2013-09-17 15:54:28 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20130917155428-4d0xb5cissw2323f
Tags: 0.53-1
* Team upload.

[ gregor herrmann ]
* debian/control: update {versioned,alternative} (build) dependencies.

[ Salvatore Bonaccorso ]
* Change Vcs-Git to canonical URI (git://anonscm.debian.org)
* Change search.cpan.org based URIs to metacpan.org based URIs

[ Axel Beckert ]
* debian/copyright: migrate pre-1.0 format to 1.0 using "cme fix dpkg-
  copyright"

[ Nuno Carvalho ]
* New upstream release.
* debian/copyright: update copyright years.
* debian/control: update standards version.
* debian/control: update debhelper required version, in order to pass all
  the hardening flags to EUMM.
* Add lintian override to apparently false-positive warning.
* Add set of patches accepted upstream but still not included in this
  release, visit https://rt.cpan.org/Public/Bug/Display.html?id=88155
  for details.

Show diffs side-by-side

added added

removed removed

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