File: Build.PL

package info (click to toggle)
libacme-brainfck-perl 1.1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 136 kB
  • sloc: perl: 107; makefile: 8
file content (21 lines) | stat: -rw-r--r-- 484 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
#!/usr/bin/perl -w
#
# $Id$
#

use strict;
use warnings;
use Module::Build;

# accomodate with CPAN autoinstall
shift(@ARGV) if $ARGV[0] && $ARGV[0] eq 'Build';    

Module::Build->new(
	module_name        => 'Acme::Brainfuck',
	license            => 'unrestricted',
	dist_version_from  => 'lib/Acme/Brainfuck.pm',
	dist_author        => 'Jaldhar H. Vyas <jaldhar@braincells.com>',
	requires           => { },
	create_makefile_pl => 'traditional',
	sign => 1,
)->create_build_script;