Added libalien-wxwidgets-perl
[pkg-perl] / deb-src / libalien-wxwidgets-perl / libalien-wxwidgets-perl-0.50 / README.txt
1 =head1 NAME
2
3 README.txt - build and installation instructions
4
5 =head1 DESCRIPTION
6
7 Alien::wxWidgets allows wxPerl to easily find information about
8 your wxWidgets installation. It can store this information for multiple
9 wxWidgets versions or configurations (debug, Unicode, etc.). It can also
10 build and install a private copy of wxWidgets as part of the build process.
11
12 =head1 Installing wxWidgets
13
14 If yo do not know how to do it, please answer 'yes' to the question 'Do you
15 want to build wxWidgets?'; Alien::wxWidgets will build and install a
16 copy of wxWidgets for you.
17
18 =head1 Installing Alien::wxWidgets
19
20 Please note that the steps below can be repeated multiple times in order
21 install multiple configurations (differing for the wxWidgets version,
22 compiler, compiler version, debug/unicode settings).
23
24 =head2 Unices and Mac OS X
25
26 Important: either wx-config must be in the PATH or the WX_CONFIG
27 environment variable must be set to the full path to wx-config. The
28 environment WX_CONFIG variable can also be used to specify a different
29 wx-config.
30
31     perl Build.PL
32     perl Build
33     perl Build test
34     perl Build install
35
36 =head2 Windows
37
38     <add your compiler to the path>
39     <build wxWidgets>
40     set WXDIR=C:\Path\to\wxWidgets
41     perl Build.PL [--wxWidgets-debug] [--wxWidgets-unicode] [--wxWidgets-mslu]
42     perl Build
43     perl Build test
44     perl Build install
45
46 Important: the command line options to Build.PL must match the build
47 settings used to build wxWidgets.
48
49 =cut