Files
nixpkgs/pkgs/os-specific/darwin/apple-source-releases/libutil/meson.build.in
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

50 lines
1.0 KiB
Meson

# Build settings based on the upstream Xcode project.
# See: https://github.com/apple-oss-distributions/libutil/blob/main/libutil.xcodeproj/project.pbxproj
# Project settings
project('libutil', 'c', 'cpp', version : '@version@')
# Dependencies
cc = meson.get_compiler('c')
cxx = meson.get_compiler('cpp')
# Libraries
libutil = library(
'util',
darwin_versions : '1',
install : true,
sources : [
'ExtentManager.cpp',
'expand_number.c',
'getmntopts.c',
'humanize_number.c',
'pidfile.c',
'realhostname.c',
'reexec_to_match_kernel.c',
'trimdomain.c',
'tzbootuuid.c',
'tzlink.c',
'tzlink.h',
'wipefs.cpp',
],
)
install_headers(
'libutil.h',
'mntopts.h',
'tzlink.h',
'wipefs.h',
)
install_man(
'expand_number.3',
'getmntopts.3',
'humanize_number.3',
'pidfile.3',
'realhostname.3',
'realhostname_sa.3',
'reexec_to_match_kernel.3',
'trimdomain.3',
'wipefs.3',
)