Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
MbetterLiveCD
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mbetter
MbetterLiveCD
Commits
8a4863ab
Commit
8a4863ab
authored
Sep 04, 2025
by
Stefy Lanza (nextime / spora )
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add usb_spec file
parent
579176ab
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
62 additions
and
0 deletions
+62
-0
usb_creator.spec
usb_creator.spec
+62
-0
No files found.
usb_creator.spec
0 → 100644
View file @
8a4863ab
# -*- mode: python ; coding: utf-8 -*-
import
sys
import
os
block_cipher
=
None
# Determine if we're running on Windows
is_windows
=
sys
.
platform
.
startswith
(
'win'
)
a
=
Analysis
(
[
'usb_creator_gui.py'
],
pathex
=
[],
binaries
=
[],
datas
=
[
# Add any data files here if needed
],
hiddenimports
=
[
'PyQt6.QtCore'
,
'PyQt6.QtGui'
,
'PyQt6.QtWidgets'
,
],
hookspath
=
[],
hooksconfig
=
{},
runtime_hooks
=
[],
excludes
=
[],
win_no_prefer_redirects
=
False
,
win_private_assemblies
=
False
,
cipher
=
block_cipher
,
noarchive
=
False
,
)
pyz
=
PYZ
(
a
.
pure
,
a
.
zipped_data
,
cipher
=
block_cipher
)
exe
=
EXE
(
pyz
,
a
.
scripts
,
a
.
binaries
,
a
.
zipfiles
,
a
.
datas
,
[],
name
=
'MBetterUSBCreator'
if
not
is_windows
else
'MBetterUSBCreator.exe'
,
debug
=
False
,
bootloader_ignore_signals
=
False
,
strip
=
False
,
upx
=
True
,
upx_exclude
=
[],
runtime_tmpdir
=
None
,
console
=
False
,
# No console window
disable_windowed_traceback
=
False
,
target_arch
=
None
,
codesign_identity
=
None
,
entitlements_file
=
None
,
icon
=
'icon.ico'
if
is_windows
else
None
,
)
# Create app bundle on macOS
if
sys
.
platform
==
'darwin'
:
app
=
BUNDLE
(
exe
,
name
=
'MBetterUSBCreator.app'
,
icon
=
'icon.icns'
,
bundle_identifier
=
'com.mbetter.usbcreator'
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment