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
|
Description: Don't install the .desktop file
It has no real value
Author: Matthias Geiger <werdahias@debian.org>
Forwarded: not-needed
Last-Update: 2025-08-10
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
diff --git a/meson.build b/meson.build
index 2906af7..3854478 100644
--- a/meson.build
+++ b/meson.build
@@ -63,11 +63,6 @@ executable('pipemixer', pipemixer_sources,
dependencies: [ncursesw_dep, pipewire_dep, m_dep, inih_dep],
install: true)
-install_data(
- 'com.github.pipemixer.desktop',
- install_dir: join_paths(get_option('datadir'), 'applications'),
-)
-
install_data(
'man/pipemixer.1',
install_dir: join_paths(get_option('mandir'), 'man1'),
|