mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-21 18:22:30 +01:00
3d033a48ea
This reverts commit 05f8435e09
.
56 lines
1.3 KiB
Python
Executable File
56 lines
1.3 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""Build a standalone executable using PyInstaller"""
|
|
|
|
import argparse
|
|
import util
|
|
import sys
|
|
|
|
|
|
def main():
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("-o", "--os")
|
|
parser.add_argument("-a", "--arch")
|
|
parser.add_argument("-l", "--label")
|
|
parser.add_argument("-e", "--extension")
|
|
parser.add_argument("-p", "--print", action="store_true")
|
|
args = parser.parse_args()
|
|
|
|
if args.label:
|
|
label = args.label
|
|
else:
|
|
label = ""
|
|
if args.os:
|
|
os = args.os.partition("-")[0].lower()
|
|
if os == "ubuntu":
|
|
os = "linux"
|
|
label += os
|
|
if args.arch == "x86":
|
|
label += "_x86"
|
|
|
|
if args.print:
|
|
return print(label)
|
|
|
|
name = "gallery-dl"
|
|
if label:
|
|
name = "{}_{}".format(name, label)
|
|
if args.extension:
|
|
name = "{}.{}".format(name, args.extension.lower())
|
|
|
|
import PyInstaller.__main__
|
|
return PyInstaller.__main__.run([
|
|
"--onefile",
|
|
"--console",
|
|
"--name", name,
|
|
"--additional-hooks-dir", util.path("scripts"),
|
|
"--distpath", util.path("dist"),
|
|
"--workpath", util.path("build"),
|
|
"--specpath", util.path("build"),
|
|
util.path("gallery_dl", "__main__.py"),
|
|
])
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|