From 5aee8f0d4cdcc16c69a63c4f3f1313833fc7932e Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Wed, 19 May 2010 17:34:02 +0200 Subject: [PATCH] install dependencies --- Makefile.PL | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Makefile.PL diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..3ce7503 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,17 @@ +use inc::Module::Install; +use Module::AutoInstall; + +name 'Game-AirportLanding'; +#all_from 'lib/AirportLanding.pm'; +#readme_from 'lib/AirportLanding.pm'; +license 'artistic'; + +requires 'SDL'; +requires 'Carp'; +requires 'Data::Dump'; +requires 'Math::CatmullRom'; +#requires ''; + +auto_include; +auto_install; +WriteAll; -- 2.20.1