1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-02-09 06:11:38 +00:00

Merge pull request #1144 from Cebtenzzre/fix-arch-package

Do not package send2trash on Arch Linux
This commit is contained in:
2023-07-17 21:54:22 -05:00
committed by GitHub

View File

@@ -122,7 +122,7 @@ def package_arch():
# need to include them). # need to include them).
print("Packaging for Arch") print("Packaging for Arch")
srcpath = op.join("build", "dupeguru-arch") srcpath = op.join("build", "dupeguru-arch")
packages = ["hscommon", "core", "qt", "send2trash"] packages = ["hscommon", "core", "qt"]
copy_files_to_package(srcpath, packages, with_so=True) copy_files_to_package(srcpath, packages, with_so=True)
shutil.copy(op.join("images", "dgse_logo_128.png"), srcpath) shutil.copy(op.join("images", "dgse_logo_128.png"), srcpath)
debopts = json.load(open(op.join("pkg", "arch", "dupeguru.json"))) debopts = json.load(open(op.join("pkg", "arch", "dupeguru.json")))