File: Build.PL

package info (click to toggle)
librg-exception-perl 1.0.3-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 72 kB
  • sloc: perl: 50; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 453 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use warnings;
use strict;
use Module::Build;

Module::Build->new(
  module_name => 'RG::Exception',
  license  => 'perl',
  configure_requires => { 'Module::Build' => 0.38 },
  dist_name => 'librg-exception-perl',
  dist_version => '1.0.3',
  dist_author => [ 'Laszlo Kajan <lkajan@rostlab.org>' ],
  dist_abstract => 'This package provides the RG::Exception module used in certain scripts from the Rost Lab.'
)->create_build_script;

# vim:et:ts=2:ai: