From: Mattia B. <mat...@li...> - 2006-10-19 20:12:27
|
On Thu, 19 Oct 2006 10:57:55 -0700 (PDT) Sergei Steshenko <ser...@ya...> wrote: Hi, > I'm trying to build wxPerl from sources (wxGTK-2.6.3 is already built by my tool), > and I am confused. > > Where can I find step by step instruction how to build wxPerl from sources using > Alien-wxWidgets-0.22 ? > > Do I just follow the instructions in Wx-0.57/README.txt file, which are: > > " > perl Makefile.PL > make > make test > make install > " > > ? > > Do I have to call methods of Alien-wxWidgets-0.22 ? wxGTK-2.6.3 is located in a > non-standard location. > > I also want to put wxPerl in a local directory. What is the place/method to specify > install directory for wxPerl. For installing Perl modules in non-standard paths, please see the "INSTALL PATHS" section of Module::Build documentation (for Alien::wxWidgets) and the "make install" section of ExtUtils::MakeMaker documentation (for wxPerl). First you need to install Alien::wxWidgets. export WX_CONFIG=/path/to/my/wx-config perl Build.PL ./Build ./Build test ./Build install then install wxPerl (notice that Alien::wxWidgets must be in Perl INC search path). perl Makefile.PL make all make test make install HTH Mattia |