mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-05 10:42:33 +01:00
dac8ace90c
This matches our app-id as the desktop-file spec recommends. This also fixes a bug where our notifications referred to this new name already.
12 lines
298 B
Meson
12 lines
298 B
Meson
icondir = join_paths(get_option('datadir'), 'icons/hicolor')
|
|
install_data(
|
|
'hexchat.png',
|
|
rename: 'io.github.Hexchat.png',
|
|
install_dir: join_paths(icondir, '48x48/apps')
|
|
)
|
|
install_data(
|
|
'hexchat.svg',
|
|
rename: 'io.github.Hexchat.svg',
|
|
install_dir: join_paths(icondir, 'scalable/apps')
|
|
)
|