File: Makefile.PL

package info (click to toggle)
libnet-dropbox-api-perl 1.9-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 268 kB
  • sloc: perl: 2,424; makefile: 7
file content (26 lines) | stat: -rw-r--r-- 504 bytes parent folder | download
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 'Crypt::URandom';
requires 'common::sense';
requires 'File::Basename';
requires 'LWP::UserAgent';
requires 'HTTP::Request::Common';

auto_install;

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

WriteAll;