File: Build.PL

package info (click to toggle)
libsixel 1.10.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,496 kB
  • sloc: ansic: 23,873; cpp: 1,227; python: 497; sh: 303; xml: 271; makefile: 50; ruby: 31; perl: 26
file content (31 lines) | stat: -rw-r--r-- 751 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
# =========================================================================
# THIS FILE IS AUTOMATICALLY GENERATED BY MINILLA.
# DO NOT EDIT DIRECTLY.
# =========================================================================

use 5.008_001;
use strict;

use Module::Build;

my $builder = Module::Build->new (
  module_name    => 'Image::LibSIXEL',
  license        => 'mit',
  dist_abstract  => 'libsixel binding for Perl',

  requires       => {
  },

  build_requires => {
    'Test::More' => 0,
  },

  script_files   => [
  ],

  extra_compiler_flags => scalar `libsixel-config --cflags` . ' -Wall -Wextra',
  extra_linker_flags   => scalar `libsixel-config --libs`,
  create_makefile_pl   => 'passthrough',
);

$builder->create_build_script();