in reply to Re: which perl gui toolkit to use?
in thread which perl gui toolkit to use?

I was pretty sure Tk would be the winner. Ok I downloaded the Tk tarball and successfully ran make on it.

Since I am installing this to a subdirectory under home, do you know which file contains the install directory that I have to update before running "make install"?

thanks!

Replies are listed 'Best First'.
Re^3: which perl gui toolkit to use?
by zentara (Cardinal) on Feb 15, 2005 at 17:30 UTC
    I think you are asking how to tell it where to install in a home directory? If so use the "PREFIX" option to "perl Makefile.Pl" BEFORE you run make

    Like:

    perl Makefile.PL PREFIX=/home/username/perl5lib

    I'm not really a human, but I play one on earth. flash japh
      exactly what I needed. thanks!