File: INSTALL

package info (click to toggle)
libxml-mini-perl 1.38-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 476 kB
  • sloc: perl: 1,857; xml: 182; sh: 4; makefile: 2
file content (43 lines) | stat: -rwxr-xr-x 883 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/sh

#   XML::Mini 
#
#    XML::Mini perl extension, XML parser/generator package.
#    Copyright (C) 2002-2008 Patrick Deegan, Psychogenic INC
#    All rights reserved
#    http://minixml.psychogenic.com
#    
#    See the LICENSE file for details on terms/conditions of use.
#    

# Installation.  The usual procedure will function nicely :

perl Makefile.PL
make
make test
make install

#   
#   but note that, since XML::Mini is 100% perl, you could probably just:
#   
#   - Select a location and create an XML directory:
#   
#   	$ mkdir /path/to/install/XML
#   
#   - Move the modules to the install location
#   
#   	$ mv Mini  Mini.pm /path/to/install/XML
#   
#   - Then specify the location of the library in your code
#   
#   	#!/usr/bin/perl
#   
#   	use lib '/path/to/install';
#   	use XML::Mini;
#   
#   	# ...
#   
#   
#   Regards,
#   Pat Deegan
#