diff --git a/data/meson.build b/data/meson.build new file mode 100644 index 0000000..178fc2f --- /dev/null +++ b/data/meson.build @@ -0,0 +1,7 @@ +datadir = get_option('datadir') + +install_data('sm.puri.Calls.desktop', + install_dir : join_paths(datadir, 'applications')) + +install_data('sm.puri.Calls.png', + install_dir : join_paths(datadir, 'icons', 'hicolor', '256x256', 'apps')) diff --git a/data/sm.puri.Calls.desktop b/data/sm.puri.Calls.desktop new file mode 100644 index 0000000..dff43d7 --- /dev/null +++ b/data/sm.puri.Calls.desktop @@ -0,0 +1,13 @@ +[Desktop Entry] +Name=Calls +GenericName=Phone +Comment=Make telephone calls +# Translators: These are desktop search terms. Do not translate semicolons, end line with a semicolon. +Keywords=Telephone;Call;Phone;Dial;Dialer;PTSN; +# Translators: Do NOT translate or transliterate this text (this is an icon file name)! +Icon=sm.puri.Calls +TryExec=calls +Exec=calls +Type=Application +Terminal=false +Categories=GNOME;GTK;Telephony; diff --git a/data/sm.puri.Calls.png b/data/sm.puri.Calls.png new file mode 100644 index 0000000..8e78d1a Binary files /dev/null and b/data/sm.puri.Calls.png differ diff --git a/meson.build b/meson.build index b7dd235..060b9a8 100644 --- a/meson.build +++ b/meson.build @@ -30,3 +30,4 @@ project('call', 'c', subdir('libgdbofono') subdir('src') subdir('doc') +subdir('data')