A feature-rich, modular AOL Instant Messenger client written chiefly by Bill Atkins and Dan Chokola in their high school days.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 lines
682 B

#!/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