File: Makefile.PL

package info (click to toggle)
libnet-dropbox-api-perl 1.8-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 228 kB
  • sloc: perl: 2,362; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 502 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use inc::Module::Install;

name     'Net-Dropbox-API';
all_from 'lib/Net/Dropbox/API.pm';
author   q{Lenz Gschwendtner <norbu09@cpan.org>};
license  'perl';

build_requires 'Test::More';

requires 'URI';
requires 'JSON';
requires 'Mouse';
requires 'Encode';
requires 'Net::OAuth';
requires 'Data::Random';
requires 'common::sense';
requires 'File::Basename';
requires 'LWP::UserAgent';
requires 'HTTP::Request::Common';

auto_install;

repository 'https://github.com/norbu09/Net--Dropbox';

WriteAll;