From fa1bbf3052240f5309f10421f26523bdcefc5a30 Mon Sep 17 00:00:00 2001 From: Florian Festi Date: Fri, 10 Feb 2023 20:34:25 +0100 Subject: [PATCH] Install both boxes and boxes_proxy into the Inkscape directory in all cases. Debian and the rest of the world got a bit out of sync. Resolves: #537 --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 3cbc314..de68e5a 100755 --- a/setup.py +++ b/setup.py @@ -54,6 +54,7 @@ class CustomBuildExtCommand(build_py): (path, [i for i in glob.glob(os.path.join("inkex", "*.inx"))])) self.distribution.data_files.append((path, ['scripts/boxes'])) + self.distribution.data_files.append((path, ['scripts/boxes_proxy.py'])) else: # we are surely not building a Debian package # then here is the default behavior: @@ -66,6 +67,7 @@ class CustomBuildExtCommand(build_py): self.distribution.data_files.append( (path, [i for i in glob.glob(os.path.join("inkex", "*.inx"))])) + self.distribution.data_files.append((path, ['scripts/boxes'])) self.distribution.data_files.append((path, ['scripts/boxes_proxy.py'])) except CalledProcessError: pass # Inkscape is not installed