NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
A few things that might be helpful to consider... (Score:1)
First of all, an offering. Below is some bash-shell code that might be a start toward a portion of what you requested. The code was passed a parameter that was the name of a perl source tar-ball (.gz). It built the version of perl and installed it to a local usr/test/ directory tree relative to where it was installed, and at the time would execute the CPAN module's 'autobundle' command and write to a file. (It also removed the 'built-in' and 'command line' entries from the various Makefiles, because of issu
Re:A few things that might be helpful to consider. (Score:1)
#!/bin/bash +x
CSD=`pwd`
PATH=$CSD/usr/test/bin:$PATH
file=$1
directory=`gzip -dc $file | tar tf - | head -1 | tr '/' ' ' | gawk '{print $1;}'`
echo " $file - $directory "
gzip -dc $file | tar xf -
rm -fr $CSD/usr/test/*
cd $directory
rm -f config.sh Policy.sh
sh Configure -des -Dprefix=$CSD/usr/test -Dusedevel -Uinstallusrbinperl
for makefile in `find .
Re:A few things that might be helpful to consider. (Score:1)
<ecode>tags, Luke.Reply to This
Parent