1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
if get_option('uuctl').allowed()
install_data(
'uuctl.sh',
rename: 'uuctl',
install_dir: get_option('bindir'),
install_mode: 'rwxr-xr-x',
)
install_data(
'uuctl.desktop',
install_dir: join_paths(get_option('datadir'), 'applications'),
install_mode: 'rw-r--r--',
)
endif
if get_option('fumon').allowed()
install_data(
'fumon.sh',
rename: 'fumon',
install_dir: get_option('bindir'),
install_mode: 'rwxr-xr-x',
)
endif
if get_option('ttyautolock').allowed()
install_data(
'ttyautolock.sh',
rename: 'ttyautolock',
install_dir: get_option('bindir'),
install_mode: 'rwxr-xr-x',
)
endif
if get_option('wait-tray').allowed()
install_data(
'wait-tray.sh',
rename: 'wait-tray',
install_dir: get_option('bindir'),
install_mode: 'rwxr-xr-x',
)
endif
if get_option('uwsm-app').allowed()
install_data(
'uwsm-app.sh',
rename: 'uwsm-app',
install_dir: get_option('bindir'),
install_mode: 'rwxr-xr-x',
)
install_symlink(
'uwsm-terminal',
install_dir: get_option('bindir'),
pointing_to: 'uwsm-app',
)
install_symlink(
'uwsm-terminal-service',
install_dir: get_option('bindir'),
pointing_to: 'uwsm-app',
)
install_symlink(
'uwsm-terminal-scope',
install_dir: get_option('bindir'),
pointing_to: 'uwsm-app',
)
endif
|