forked from pool/nwg-launchers
* XDG Desktop Menu Categories #198 * Allow to define CSS classes in nwgbar JSON file #195 * Saturate icon size if it's off the allowed range (16-2048) #188 * Use /tmp if XDG_RUNTIME_DIR is not defined and /var/run/user/UID not exists #192 * Allow for ~ in the beginning of Exec= value #205 - Add nwg-launchers-readme.patch: we already ship the readme OBS-URL: https://build.opensuse.org/package/show/X11:Utilities/nwg-launchers?expand=0&rev=21
34 lines
1014 B
Diff
34 lines
1014 B
Diff
Index: nwg-launchers-0.7.0/meson.build
|
|
===================================================================
|
|
--- nwg-launchers-0.7.0.orig/meson.build
|
|
+++ nwg-launchers-0.7.0/meson.build
|
|
@@ -72,28 +72,6 @@ if not python.found()
|
|
python = find_program('python', required: false)
|
|
endif
|
|
|
|
-# generate README.md from template
|
|
-# make sure to copy it to the source directory!
|
|
-if python.found()
|
|
- readme = custom_target('readme',
|
|
- output: [ 'README.md' ],
|
|
- input: [ 'README.md.in' ],
|
|
- command: [
|
|
- python, '@SOURCE_ROOT@/make_readme.py',
|
|
- '@INPUT@', '@OUTPUT@',
|
|
- bar_exe.full_path(),
|
|
- dmenu_exe.full_path(),
|
|
- grid_client_exe.full_path(),
|
|
- grid_server_exe.full_path()
|
|
- ],
|
|
- depends: [bar_exe, dmenu_exe, grid_client_exe, grid_server_exe],
|
|
- install_dir: conf_data.get('datadir'),
|
|
- install: true
|
|
- )
|
|
-else
|
|
- message('Python was not found, fresh README.md will not be generated')
|
|
-endif
|
|
-
|
|
install_data(
|
|
['icon-missing.svg', 'icon-missing.png'],
|
|
install_dir: conf_data.get('datadir')
|