File: Makefile.PL

package info (click to toggle)
libmedia-convert-perl 1.5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,432 kB
  • sloc: perl: 2,119; makefile: 2
file content (39 lines) | stat: -rw-r--r-- 743 bytes parent folder | download | duplicates (4)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/perl -w

use strict;
use warnings;

use ExtUtils::MakeMaker;

WriteMakefile(
	NAME => "Media::Convert",
	ABSTRACT_FROM => "lib/Media/Convert.pm",
	VERSION_FROM => "lib/Media/Convert.pm",
	AUTHOR => [
		'Wouter Verhelst <w@uter.be>',
	],
	PREREQ_PM => {
		'Alien::ffmpeg' => 0,
		'JSON::MaybeXS' => 0,
		'Moose' => 0,
		'MooseX::Singleton' => 0,
		'SemVer' => 0,
		'IPC::System::Simple' => 0,
	},
	EXE_FILES => [
		'scripts/mc-encode',
	],
	TEST_REQUIRES => {
		'Test::More' => 0,
	},
	META_MERGE => {
		"meta-spec" => { version => 2 },
		resources => {
			repository => {
				type => "git",
				url => "https://salsa.debian.org/wouter/media-convert.git",
				web => "https://salsa.debian.org/wouter/media-convert",
			},
		}
	},
);