Skip to content

Commit

Permalink
fix pyinstaller build for macos-x86-64
Browse files Browse the repository at this point in the history
  • Loading branch information
schmelly committed Mar 28, 2024
1 parent 11a0a57 commit 1ab60b4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion GraXpert-macos-x86_64.spec
@@ -1,13 +1,19 @@
# -*- mode: python ; coding: utf-8 -*-
from PyInstaller.utils.hooks import copy_metadata


block_cipher = None


datas = []
datas += [('./img/*', './img/'), ('./graxpert-dark-blue.json', './')]
datas += copy_metadata('xisf')


a = Analysis(['./graxpert/main.py'],
pathex=[],
binaries=[],
datas=[('./img/*', './img/'), ('./graxpert-dark-blue.json', './')],
datas=datas,
hiddenimports=['PIL._tkinter_finder', 'tkinter'],
hookspath=['./releng'],
hooksconfig={},
Expand Down

0 comments on commit 1ab60b4

Please sign in to comment.