mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-08-22 02:38:45 -04:00
11 lines
251 B
Bash
11 lines
251 B
Bash
#!/bin/bash
|
|
|
|
# rootful (iphoneos-arm)
|
|
export PREFIX=$THEOS/toolchain/Xcode11.xctoolchain/usr/bin/
|
|
make clean
|
|
make package FINALPACKAGE=1
|
|
|
|
# rootless (iphoneos-arm64)
|
|
export -n PREFIX
|
|
make clean
|
|
make package FINALPACKAGE=1 THEOS_PACKAGE_SCHEME=rootless |