1Method 1a: Standard install on UNIX with make
2=============================================
3
4    Unzip the module as follows:
5
6           tar -zxvf MP4-Info-1.xx.tar.gz
7
8    The module can be installed using the standard Perl procedure:
9
10        perl Makefile.PL
11        make
12        make test
13        make install    # You may need to be root
14        make clean      # or make realclean
15
16
17Method 1b: Standard install on Windows with nmake
18=================================================
19
20    Use Winzip to Unzip the module.
21
22    Start a Command Prompt and cd to the directory whete you unzipped the
23    module.
24
25    You will need an 'nmake' program. This can be obtained from:
26
27        ftp://ftp.microsoft.com/Softlib/MSLFILES/nmake15.exe
28
29    The module can be installed using the standard Perl procedure:
30
31        perl Makefile.PL
32        nmake
33        nmake test
34        nmake install   # You may need to be an Administrator
35        nmake clean     # or nmake realclean
36
37
38Method 2: Using CPAN.pm (UNIX or Windows)
39=========================================
40
41    If you have CPAN.pm configured you can install the module as follows:
42
43        perl -MCPAN -e "install 'MP4::Info'"
44
45