File: Build.PL

package info (click to toggle)
libalien-build-perl 2.84-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,116 kB
  • sloc: perl: 10,350; ansic: 134; sh: 66; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 342 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use strict;
use warnings;
use Module::Build;
use Alien::xz;

my $build = Module::Build->new(
  module_name => 'LZMA::Example',
  dist_abstract => 'lzma example',
  configure_requires => {
    'Alien::xz' => '0.05',
  },
  extra_compiler_flags => Alien::xz->cflags,
  extra_linker_flags   => Alien::xz->libs,
);

$build->create_build_script;