2024-04-28 16:19:25 -06:00
|
|
|
#!/bin/ash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
source ~/.local/share/pipx/venvs/pyinstaller/bin/activate
|
2024-07-03 12:43:51 -06:00
|
|
|
python -m devscripts.install_deps --include secretstorage --include curl-cffi
|
2024-04-28 16:19:25 -06:00
|
|
|
python -m devscripts.make_lazy_extractors
|
|
|
|
python devscripts/update-version.py -c "${channel}" -r "${origin}" "${version}"
|
|
|
|
python -m bundle.pyinstaller
|
|
|
|
deactivate
|
|
|
|
|
|
|
|
source ~/.local/share/pipx/venvs/staticx/bin/activate
|
|
|
|
staticx /yt-dlp/dist/yt-dlp_linux /build/yt-dlp_linux
|
|
|
|
deactivate
|