Merge branch 'stable' into 'main'

This commit is contained in:
Nedko Arnaudov 2023-10-01 20:10:45 +03:00
commit 71c8e1cf23
1 changed files with 18 additions and 17 deletions

View File

@ -589,8 +589,6 @@ def build(bld):
# GtkBuilder UI definitions (XML)
bld.install_files('${DATA_DIR}', 'gui/gladish.ui')
bld.install_files('${PREFIX}/bin', 'ladish_control', chmod=0o0755)
# 'Desktop' file (menu entry, icon, etc)
bld.install_files('${PREFIX}/share/applications/', 'gui/gladish.desktop', chmod=0o0644)
@ -606,6 +604,11 @@ def build(bld):
bld.install_files('${DATA_DIR}', status_images)
bld.install_files('${DATA_DIR}', "art/ladish-logo-128x128.png")
bld(features='intltool_po', appname=APPNAME, podir='po', install_path="${LOCALE_DIR}")
bld.install_files('${PREFIX}/bin', 'ladish_control', chmod=0o0755)
bld.install_files('${DOCDIR}', ["AUTHORS", "README.adoc", "NEWS"])
bld.install_as('${DATA_DIR}/COPYING', "gpl2.txt")
@ -622,8 +625,6 @@ def build(bld):
else:
Logs.pprint('CYAN', "doxygen documentation already built.")
bld(features='intltool_po', appname=APPNAME, podir='po', install_path="${LOCALE_DIR}")
def get_tags_dirs():
source_root = os.path.dirname(Utils.g_module.root_path)
if 'relpath' in os.path.__all__: