2 Commits
1.2.0 ... 1.2.2

14 changed files with 21 additions and 12 deletions

View File

@@ -1,4 +0,0 @@
subdir('openrc')
subdir('runit')
subdir('s6')
subdir('systemd')

View File

@@ -1,6 +1,15 @@
man_pages = files(
'tuf-cli.1',
'tuf-gui.1',
'tuf-tray.1'
)
man_pages = files()
if build_cli
man_pages += files('tuf-cli.1')
endif
if build_gui
man_pages += files('tuf-gui.1')
endif
if build_tray
man_pages += files('tuf-tray.1')
endif
if build_cli or build_gui or build_tray
install_man(man_pages)
endif

View File

@@ -26,3 +26,7 @@ subdir('ui')
subdir('icons')
subdir('gschema')
subdir('man')
subdir('openrc')
subdir('runit')
subdir('s6')
subdir('systemd')

View File

@@ -3,6 +3,7 @@ Description=TUF Manager Server
[Service]
Type=forking
PIDFile=/run/tufmanager/pid
ExecStart=@LIBEXECDIR@/tuf-server
[Install]

View File

@@ -4,7 +4,7 @@ project(
'c',
'vala'
],
version: '1.2.0',
version: '1.2.2',
license: 'BSD-3',
default_options:
[
@@ -28,4 +28,3 @@ subdir('data')
subdir('src')
subdir('docs')
subdir('script')
subdir('contrib')