File: Build.PL

package info (click to toggle)
libacme-brainfck-perl 1.1.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, jessie, jessie-kfreebsd, lenny, sarge, squeeze, wheezy
  • size: 92 kB
  • ctags: 9
  • sloc: perl: 107; makefile: 50
file content (21 lines) | stat: -rw-r--r-- 484 bytes parent folder | download | duplicates (3)
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;