changeset 19 | 705353a1d274 |
parent 18 | eb152cd8d2bc |
18:eb152cd8d2bc | 19:705353a1d274 |
---|---|
1 #! /usr/bin/perl |
|
2 use strict; |
|
3 use warnings; |
|
4 use Module::Build; |
|
5 |
|
6 Module::Build->new( |
|
7 dist_name => 'read-httpd-conf', |
|
8 dist_version_from => 'lib/App/read_httpd_conf.pm', |
|
9 dist_abstract => 'simple config parser for apache', |
|
10 bin_files => [qw(bin/read-httpd-conf)], |
|
11 requires => { |
|
12 perl => '0', |
|
13 }, |
|
14 )->create_build_script; |