repo.or.cz
/
audio-mpd.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[project @ 5405]
[audio-mpd.git]
/
Build.PL
blob
4faf3380d265763ceaf53db2619397f6740e7ec4
1
#!/usr/bin/perl
2
#
3
#
4
5
use
Module
::
Build
;
6
use
Module
::
Build
::
Compat
;
7
8
9
my
$build
=
Module
::
Build
->
new
10
(
11
module_name
=>
'Audio::MPD'
,
12
license
=>
'gpl'
,
13
build_requires
=> {
14
'Module::Build'
=>
'0.20'
15
},
16
17
create_makefile_pl
=>
'passthrough'
,
18
19
requires
=> {
20
'IO::Socket'
=>
'1.00'
,
21
'Test'
=>
'1.00'
,
22
},
23
);
24
25
$build
->
create_build_script
();