mirror of https://github.com/opa334/TrollStore.git
Merge branch 'main' into main
This commit is contained in:
commit
c500f6a20e
|
@ -1,8 +1,8 @@
|
||||||
Package: com.opa334.trollinstaller2
|
Package: com.opa334.trollinstaller2
|
||||||
Name: TrollInstaller2
|
Name: TrollInstaller2
|
||||||
Version: 0.0.1
|
Version: 2.0.0
|
||||||
Architecture: iphoneos-arm
|
Architecture: iphoneos-arm
|
||||||
Description: An awesome application!
|
Description: TrollInstaller v2!
|
||||||
Maintainer: opa334
|
Maintainer: opa334
|
||||||
Author: opa334
|
Author: opa334
|
||||||
Section: Utilities
|
Section: Utilities
|
|
@ -1,9 +1,17 @@
|
||||||
cd ../TrollInstaller2
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
|
if [ ! -d "./out" ]
|
||||||
|
then
|
||||||
|
mkdir -p ./out
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd ../Installer/TrollInstaller2
|
||||||
make clean
|
make clean
|
||||||
make package
|
make package
|
||||||
cd -
|
cd -
|
||||||
|
|
||||||
lipo -thin arm64e ../TrollInstaller2/.theos/obj/debug/TrollInstaller2.app/TrollInstaller2 -output ./out/pwn_arm64e
|
lipo -thin arm64e ../Installer/TrollInstaller2/.theos/obj/debug/TrollInstaller2.app/TrollInstaller2 -output ./out/pwn_arm64e
|
||||||
ldid -S -M -Kcert.p12 ./out/pwn_arm64e
|
ldid -S -M -Kcert.p12 ./out/pwn_arm64e
|
||||||
|
|
||||||
mkdir ./out/devpwn
|
mkdir ./out/devpwn
|
||||||
|
@ -13,7 +21,7 @@ unzip target/Developer.ipa -d ./out/devpwn
|
||||||
rm ./out/pwn_arm64e
|
rm ./out/pwn_arm64e
|
||||||
|
|
||||||
cd ./out/devpwn
|
cd ./out/devpwn
|
||||||
zip -mvr devpwn.ipa *
|
zip -vr devpwn.ipa *
|
||||||
cd -
|
cd -
|
||||||
|
|
||||||
cp ./out/devpwn/devpwn.ipa ./out/DeveloperInstaller.ipa
|
cp ./out/devpwn/devpwn.ipa ./out/DeveloperInstaller.ipa
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Installation through TrollInstaller 2
|
# Installation through TrollInstaller 2
|
||||||
|
|
||||||
**Supported devices:** A12-A15, 14.0 - 15.4.1 (15.5b4)
|
**Supported devices:** A12 - A15, 14.0 - 15.4.1 (15.5b4)
|
||||||
|
|
||||||
## Compiling pwned IPA (currently requires a Mac) (Needs [THEOS](https://theos.dev/docs/installation-macos) and [14.5 sdk](https://github.com/theos/sdks) installed)
|
## Compiling pwned IPA (currently requires a Mac) (Needs [THEOS](https://theos.dev/docs/installation-macos) and [14.5 sdk](https://github.com/theos/sdks) installed)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue