mirror of
https://github.com/tio/tio.git
synced 2026-05-01 14:57:59 +02:00
Replace autotools with meson
To introduce much simpler build configuration which is also easier to maintain.
This commit is contained in:
parent
c01152bb38
commit
e9208d693e
26 changed files with 156 additions and 550 deletions
17
man/meson.build
Normal file
17
man/meson.build
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
mandir = join_paths(get_option('prefix'), get_option('mandir'))
|
||||
man1dir = join_paths(mandir, 'man1')
|
||||
|
||||
conf = configuration_data()
|
||||
conf.set('version', meson.project_version())
|
||||
conf.set('version_date', version_date)
|
||||
|
||||
manpage = configure_file(
|
||||
input: files('tio.1.in'),
|
||||
output: 'tio.1',
|
||||
configuration: conf,
|
||||
)
|
||||
|
||||
install_man(
|
||||
manpage,
|
||||
install_dir: man1dir,
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue