mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
12 lines
329 B
Makefile
12 lines
329 B
Makefile
|
|
#!/usr/bin/perl -w
|
||
|
|
use strict;
|
||
|
|
|
||
|
|
use ExtUtils::MakeMaker;
|
||
|
|
|
||
|
|
WriteMakefile( NAME => "Finance::Quote",
|
||
|
|
PREREQ_PM => { "LWP::UserAgent" => 0,
|
||
|
|
"HTTP::Request::Common" => 0,
|
||
|
|
"HTML::TableExtract" => 0},
|
||
|
|
VERSION_FROM => "lib/Finance/Quote.pm"
|
||
|
|
);
|