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
54 lines
1.1 KiB
Meson
54 lines
1.1 KiB
Meson
# Build settings based on the upstream Xcode project.
|
|
# See: https://github.com/apple-oss-distributions/mail_cmds/blob/main/mail_cmds.xcodeproj/project.pbxproj
|
|
|
|
# Project settings
|
|
project('mail_cmds', 'c', version : '@version@')
|
|
|
|
|
|
# Dependencies
|
|
cc = meson.get_compiler('c')
|
|
|
|
|
|
# Binaries
|
|
executable(
|
|
'mail',
|
|
install : true,
|
|
sources : [
|
|
'mail/cmd1.c',
|
|
'mail/cmd2.c',
|
|
'mail/cmd3.c',
|
|
'mail/cmdtab.c',
|
|
'mail/collect.c',
|
|
'mail/edit.c',
|
|
'mail/fio.c',
|
|
'mail/getname.c',
|
|
'mail/head.c',
|
|
'mail/lex.c',
|
|
'mail/list.c',
|
|
'mail/main.c',
|
|
'mail/names.c',
|
|
'mail/popen.c',
|
|
'mail/quit.c',
|
|
'mail/send.c',
|
|
'mail/strings.c',
|
|
'mail/temp.c',
|
|
'mail/tty.c',
|
|
'mail/util.c',
|
|
'mail/v7.local.c',
|
|
'mail/vars.c',
|
|
'mail/version.c',
|
|
],
|
|
)
|
|
install_man('mail/mail.1')
|
|
|
|
install_symlink(
|
|
'mailx',
|
|
install_dir : get_option('bindir'),
|
|
pointing_to : 'mail',
|
|
)
|
|
install_symlink(
|
|
'mailx.1',
|
|
install_dir : get_option('mandir') / 'man1',
|
|
pointing_to : 'mail.1',
|
|
)
|