File: xBuild.PL

package info (click to toggle)
libacme-eyedrops-perl 1.62-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,420 kB
  • sloc: perl: 3,393; makefile: 7
file content (42 lines) | stat: -rw-r--r-- 1,179 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# The .eye files under lib/Acme are treated essentially the same
# as .pm files.

use strict;
use Module::Build;

print <<'CAMEL_GREETING';
                   ######
    #####        #########
##########      ###########
 ##########    #############
   #######   ################
  ######## ###################
  ####### #####################
  #############################
   #############################
   ##############################
    #############################
     ######################### ##
       ## ############### #### ##
          ####  ########   ### #
          ###   #### ###   ###
          ###  ##### ##     ##
          ###  ####  ##     ##
          ##   #     ##     ##
          ##    #    #      #
          ##     #  #       #
          #       ###       #
          #      ## ##      #
         ##    ####  #     ##
       ####               ####
CAMEL_GREETING

my $m = Module::Build->new(
   module_name =>     'Acme::EyeDrops',
   license =>         'perl',
   requires =>        { 'perl' => '5.006' },
   build_requires =>  { 'Module::Build' => 0.26 }
);
$m->add_build_element('eye');
$m->add_build_element('eyp');
$m->create_build_script;