#!/usr/bin/perl # ----------------------------------------------------------------------------- # Makefile.PL # Currently only works on UNIX-based machines. Downloads and installs the # latest Tk if necessary. Creates a Makefile that can be used to install # milkbone. # ----------------------------------------------------------------------------- # automatically install dependencies use ExtUtils::AutoInstall ( -version => '0.40', -config => { -make_args => "XFT=1" }, 'GUI' => [ 'Tk' => '804.025' ], 'XMMS' => [ 'Xmms::Remote' => '', ] ); open my $mk, ">Makefile"; print $mk <<'END'; END