forked from saitoha/libsixel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
31 lines (23 loc) · 751 Bytes
/
Copy pathBuild.PL
File metadata and controls
31 lines (23 loc) · 751 Bytes
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();