diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-04-27 21:42:03 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-04-27 21:52:36 +0200 |
commit | 9cd0a27e55c4762a8af3a0919ad35f2327a2bb88 (patch) | |
tree | bac822be6f4724f969e58841f78ef2e98ecf8c3d /Makefile.am | |
parent | d9c506df8528c2db84d724048f9bc578605f9a3f (diff) |
Add desktop file and icons
Fixes: https://github.com/dillo-browser/dillo/issues/141
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 036a5720..532fb945 100644 --- a/Makefile.am +++ b/Makefile.am @@ -5,3 +5,14 @@ dist_bin_SCRIPTS = dillo-install-hyphenation EXTRA_DIST = README.md Doxyfile dillorc install-dpi-local d_size.h sysconf_DATA = dillorc + +desktopdir = $(datadir)/applications +desktop_DATA = dillo.desktop + +appicon48dir = $(datadir)/icons/hicolor/48x48/apps/ +appicon48_DATA = icons/48x48/dillo.png + +appicon128dir = $(datadir)/icons/hicolor/128x128/apps/ +appicon128_DATA = icons/128x128/dillo.png + +EXTRA_DIST += $(desktop_DATA) $(appicon48_DATA) $(appicon128_DATA) |