1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-08 06:53:54 +02:00

perl: Rewrite build system using Meson

This commit is contained in:
polar 2024-04-25 14:20:05 +01:00 committed by John Ericson
parent b406cf9b81
commit fc1d9023a2
9 changed files with 299 additions and 201 deletions

32
perl/meson_options.txt Normal file
View file

@ -0,0 +1,32 @@
# Nix-Perl build options
#============================================================================
# compiler args
#============================================================================
option(
'version',
type : 'string',
description : 'nix-perl version')
option(
'tests',
type : 'feature',
value : 'disabled',
description : 'run nix-perl tests')
# Location of Perl Modules
#============================================================================
option(
'dbi_path',
type : 'string',
value : '/usr',
description : 'path to perl::dbi')
option(
'dbd_sqlite_path',
type : 'string',
value : '/usr',
description : 'path to perl::dbd-SQLite')