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:
parent
b406cf9b81
commit
fc1d9023a2
9 changed files with 299 additions and 201 deletions
32
perl/meson_options.txt
Normal file
32
perl/meson_options.txt
Normal 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')
|
Loading…
Add table
Add a link
Reference in a new issue