File: 0002-build-don-t-install-run-script.patch

package info (click to toggle)
ticketbooth 1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,384 kB
  • sloc: python: 4,863; makefile: 5; sh: 1
file content (39 lines) | stat: -rw-r--r-- 1,056 bytes parent folder | download | duplicates (2)
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
From: Arnaud Ferraris <arnaud.ferraris@collabora.com>
Date: Tue, 26 Sep 2023 12:50:17 +0200
Subject: build: don't install run script

It is installed to a non-standard location and doesn't provide any
benefit to the user.

Forwarded: not-needed, Debian-specific change
---
 meson.build | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/meson.build b/meson.build
index d69a418..b482fb7 100644
--- a/meson.build
+++ b/meson.build
@@ -54,14 +54,14 @@ subdir('data')
 subdir('src')
 subdir('po')
 
-install_data(
-  configure_file(
-    input: 'install/ticketbooth-run-script.in',
-    output: 'ticketbooth-run-script',
-    configuration: conf
-  ),
-  install_dir: join_paths(get_option('prefix'), meson.project_name())
-)
+# install_data(
+#   configure_file(
+#     input: 'install/ticketbooth-run-script.in',
+#     output: 'ticketbooth-run-script',
+#     configuration: conf
+#   ),
+#   install_dir: join_paths(get_option('prefix'), meson.project_name())
+# )
 
 gnome.post_install(
      glib_compile_schemas: true,