Procursus 2 support #17
@ -1,80 +1,80 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
if [ "$EUID" -ne 0 ]; then
|
if [ "$EUID" -ne 0 ]; then
|
||||||
echo You need to run this script as root.
|
echo You need to run this script as root.
|
||||||
else
|
else
|
||||||
need=""
|
need=""
|
||||||
command -v plutil >/dev/null 2>&1 || need+="com.bingner.plutil "
|
command -v plutil >/dev/null 2>&1 || need+="com.bingner.plutil "
|
||||||
command -v curl >/dev/null 2>&1 || need+="curl "
|
command -v curl >/dev/null 2>&1 || need+="curl "
|
||||||
command -v wget >/dev/null 2>&1 || need+="wget "
|
command -v wget >/dev/null 2>&1 || need+="wget "
|
||||||
clear
|
clear
|
||||||
echo "Copyright (c) 2020, Yaya4 All rights reserved."
|
echo "Copyright (c) 2020, Yaya4 All rights reserved."
|
||||||
echo -e "\e[31mWelcome to Uncursus Installation Script V2.0.8-4 (Stable) By @Yaya4_4 on Twitter.\e[0m"
|
echo -e "\e[31mWelcome to Uncursus Installation Script V2.0.9 (Stable) By @Yaya4_4 on Twitter.\e[0m"
|
||||||
echo "Checking if this script is running on ARM Darwin"
|
echo "Checking if this script is running on ARM Darwin"
|
||||||
if [ $(uname) = "Linux" ]; then
|
if [ $(uname) = "Linux" ]; then
|
||||||
if [ $(uname -p) = "x86_64" ]; then
|
if [ $(uname -p) = "x86_64" ]; then
|
||||||
PC=yes
|
PC=yes
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
if [[ "${PC}" = yes ]]; then
|
if [[ "${PC}" = yes ]]; then
|
||||||
echo "Use this script with SSH over an IP session on your iDevice. Thanks."
|
echo "Use this script with SSH over an IP session on your iDevice. Thanks."
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
echo "ARM Darwin detected, running..."
|
echo "ARM Darwin detected, running..."
|
||||||
echo "Checking if you're using unc0ver..."
|
echo "Checking if you're using unc0ver..."
|
||||||
if [[ -f "/.installed_unc0ver" ]]; then
|
if [[ -f "/.installed_unc0ver" ]]; then
|
||||||
u0=yes
|
u0=yes
|
||||||
else
|
else
|
||||||
u0=no
|
u0=no
|
||||||
fi
|
fi
|
||||||
if [[ "${u0}" = no ]]; then
|
if [[ "${u0}" = no ]]; then
|
||||||
echo "Use unc0ver, thanks"
|
echo "Use unc0ver, thanks"
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
echo "unc0ver detected"
|
echo "unc0ver detected"
|
||||||
echo "WARNING: I'M NOT RESPONSIBLE IF ANYTHING GOES WRONG"
|
echo "WARNING: I'M NOT RESPONSIBLE IF ANYTHING GOES WRONG"
|
||||||
echo "If you've found any bugs, please create an issue in GitHub."
|
echo "If you've found any bugs, please create an issue in GitHub."
|
||||||
echo "Checking Dependencies..."
|
echo "Checking Dependencies..."
|
||||||
if [[ $need != "" ]]; then
|
if [[ $need != "" ]]; then
|
||||||
echo "Installing Dependencies..."
|
echo "Installing Dependencies..."
|
||||||
apt update
|
apt update
|
||||||
apt install $need -y
|
apt install $need -y
|
||||||
fi
|
fi
|
||||||
echo "Pulling and executing the Procursus Migration Script..."
|
echo "Pulling and executing the Procursus Migration Script..."
|
||||||
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Yaya48/Uncursus/new/procursus-migration.sh)"
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Yaya48/Uncursus/new/procursus-migration.sh)"
|
||||||
echo "Creating a custom directory for the required files. Path (/tmp/uncursus)."
|
echo "Creating a custom directory for the required files. Path (/tmp/uncursus)."
|
||||||
rm -rf /tmp/uncursus
|
rm -rf /tmp/uncursus
|
||||||
mkdir /tmp/uncursus
|
mkdir /tmp/uncursus
|
||||||
mkdir /tmp/uncursus/u0
|
mkdir /tmp/uncursus/u0
|
||||||
echo "Done. Setuping Uncursus Repo...."
|
echo "Done. Setuping Uncursus Repo...."
|
||||||
echo "Types: deb" > /etc/apt/sources.list.d/uncursus.sources
|
echo "Types: deb" > /etc/apt/sources.list.d/uncursus.sources
|
||||||
echo "URIs: https://uncursus.yaya48.gq" >> /etc/apt/sources.list.d/uncursus.sources
|
echo "URIs: https://uncursus.yaya48.gq" >> /etc/apt/sources.list.d/uncursus.sources
|
||||||
echo "Suites: iphoneos-arm64/uncursus" >> /etc/apt/sources.list.d/uncursus.sources
|
echo "Suites: iphoneos-arm64/uncursus" >> /etc/apt/sources.list.d/uncursus.sources
|
||||||
echo "Components: main" >> /etc/apt/sources.list.d/uncursus.sources
|
echo "Components: main" >> /etc/apt/sources.list.d/uncursus.sources
|
||||||
echo "" >> /etc/apt/sources.list.d/uncursus.sources
|
echo "" >> /etc/apt/sources.list.d/uncursus.sources
|
||||||
mkdir -p /etc/apt/preferences.d/
|
mkdir -p /etc/apt/preferences.d/
|
||||||
echo "Package: *" > /etc/apt/preferences.d/uncursus
|
echo "Package: *" > /etc/apt/preferences.d/uncursus
|
||||||
echo "Pin: release l=Uncursus" >> /etc/apt/preferences.d/uncursus
|
echo "Pin: release l=Uncursus" >> /etc/apt/preferences.d/uncursus
|
||||||
echo "Pin-Priority: 1001" >> /etc/apt/preferences.d/uncursus
|
echo "Pin-Priority: 1001" >> /etc/apt/preferences.d/uncursus
|
||||||
echo "" >> /etc/apt/preferences.d/uncursus
|
echo "" >> /etc/apt/preferences.d/uncursus
|
||||||
wget -q https://github.com/Yaya48/uncursusrepov2/raw/master/pool/main/iphoneos-arm64/Yaya4Keyring.deb --directory-prefix=/tmp/uncursus/
|
wget -q https://github.com/Yaya48/uncursusrepov2/raw/master/pool/main/iphoneos-arm64/Yaya4Keyring.deb --directory-prefix=/tmp/uncursus/
|
||||||
dpkg -i /tmp/uncursus/Yaya4Keyring.deb
|
dpkg -i /tmp/uncursus/Yaya4Keyring.deb
|
||||||
apt update
|
apt update
|
||||||
echo "Done. Installing Procursus Cydia..."
|
echo "Done. Installing Procursus Cydia..."
|
||||||
apt purge cydia -y --allow-remove-essential
|
apt purge cydia -y --allow-remove-essential
|
||||||
apt install cydia -y essential -y
|
apt install cydia -y essential -y
|
||||||
echo "Done. Installing necessities..."
|
echo "Done. Installing necessities..."
|
||||||
apt update
|
apt update
|
||||||
apt install essential-dummy -y lzma -y ncurses -y
|
apt install essential-dummy -y lzma -y ncurses -y libidn2 -y
|
||||||
echo "Done. Running Firmware Configuration (./firmware.sh)"
|
echo "Done. Running Firmware Configuration (./firmware.sh)"
|
||||||
/usr/libexec/firmware
|
/usr/libexec/firmware
|
||||||
echo "Bootstrap installation complete. Cleaning up..."
|
echo "Bootstrap installation complete. Cleaning up..."
|
||||||
rm -rf /tmp/uncursus/
|
rm -rf /tmp/uncursus/
|
||||||
rm -rf /tmp/procursus-migration/
|
rm -rf /tmp/procursus-migration/
|
||||||
echo "All Done."
|
echo "All Done."
|
||||||
touch /.installed_odyssey
|
touch /.installed_odyssey
|
||||||
touch /.procursus_strapped
|
touch /.procursus_strapped
|
||||||
uicache -p /Applications/Cydia.app
|
uicache -p /Applications/Cydia.app
|
||||||
sbreload
|
sbreload
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
@ -1,122 +1,132 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
if [ "$EUID" -ne 0 ]; then
|
if [ "$EUID" -ne 0 ]; then
|
||||||
echo You need to run this script as root.
|
echo You need to run this script as root.
|
||||||
else
|
else
|
||||||
clear
|
clear
|
||||||
echo "Copyright (c) 2020, Yaya4 All rights reserved."
|
echo "Copyright (c) 2020, Yaya4 All rights reserved."
|
||||||
echo -e "\e[31mUncursus 2.0 Migration Part By Yaya4_4 1.2.3 (Stable)\e[0m"
|
echo -e "\e[31mUncursus 2.0 Migration Part By Yaya4_4 2.0.0 (Stable)\e[0m"
|
||||||
checkDependencies(){
|
checkDependencies(){
|
||||||
echo "Checking Dependencies ..."
|
echo "Checking Dependencies ..."
|
||||||
need2=""
|
need2=""
|
||||||
command -v wget >/dev/null 2>&1 || need2+="wget "
|
command -v wget >/dev/null 2>&1 || need2+="wget "
|
||||||
command -v plutil >/dev/null 2>&1 || need2+="com.bingner.plutil "
|
command -v plutil >/dev/null 2>&1 || need2+="com.bingner.plutil "
|
||||||
if [[ $need2 != "" ]]; then
|
if [[ $need2 != "" ]]; then
|
||||||
echo "Installing Dependencies..."
|
echo "Installing Dependencies..."
|
||||||
apt update
|
apt update
|
||||||
apt install $need2 -y
|
apt install $need2 -y
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
checkiOSVersion(){
|
checkiOSVersion(){
|
||||||
echo "Checking iOS Version ..."
|
echo "Checking iOS Version ..."
|
||||||
VER=$(/usr/bin/plutil -key ProductVersion /System/Library/CoreServices/SystemVersion.plist)
|
VER=$(/usr/bin/plutil -key ProductVersion /System/Library/CoreServices/SystemVersion.plist)
|
||||||
if [[ "${VER%.*}" -ge 12 ]] && [[ "${VER%.*}" -lt 13 ]]; then
|
if [[ "${VER%.*}" -ge 12 ]] && [[ "${VER%.*}" -lt 13 ]]; then
|
||||||
echo "iOS 12 detected, setting the CFVER to 1500"
|
echo "iOS 12 detected, setting the CFVER to 1500"
|
||||||
CFVER=1500
|
CFVER=1500
|
||||||
elif [[ "${VER%.*}" -ge 13 ]]; then
|
elif [[ "${VER%.*}" -ge 13 ]]; then
|
||||||
echo "iOS 13 detected, setting the CFVER to 1600"
|
echo "iOS 13 detected, setting the CFVER to 1600"
|
||||||
CFVER=1600
|
CFVER=1600
|
||||||
elif [[ "${VER%.*.*}" -ge 13 ]]; then
|
elif [[ "${VER%.*.*}" -ge 13 ]]; then
|
||||||
echo "iOS 13 detected, setting the CFVER to 1600"
|
echo "iOS 13 detected, setting the CFVER to 1600"
|
||||||
CFVER=1600
|
CFVER=1600
|
||||||
elif [[ "${VER%.*.*}" -ge 12 ]]; then
|
elif [[ "${VER%.*.*}" -ge 12 ]]; then
|
||||||
echo "iOS 12 detected, setting the CFVER to 1500"
|
echo "iOS 12 detected, setting the CFVER to 1500"
|
||||||
CFVER=1500
|
CFVER=1500
|
||||||
else
|
else
|
||||||
echo "Your iOS Version Is Under iOS 12 Or Either Than 13"
|
echo "Your iOS Version Is Under iOS 12 Or Either Than 13"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
checkSileo(){
|
checkSileo(){
|
||||||
echo "Checking if sileo for checkrain is installed ..."
|
echo "Checking if sileo for checkrain is installed ..."
|
||||||
dpkg -s org.coolstar.sileo &> /dev/null
|
dpkg -s org.coolstar.sileo &> /dev/null
|
||||||
if [ $? -eq 0 ]; then
|
if [ $? -eq 0 ]; then
|
||||||
echo "Sileo for checkrain is installed."
|
echo "Sileo for checkrain is installed."
|
||||||
echo "Uninstalling Sileo..."
|
echo "Uninstalling Sileo..."
|
||||||
rm -rf /tmp/sileoremoveal
|
rm -rf /tmp/sileoremoveal
|
||||||
mkdir /tmp/sileoremoveal
|
mkdir /tmp/sileoremoveal
|
||||||
echo "Downloading necessary debs."
|
echo "Downloading necessary debs."
|
||||||
wget -q https://apt.bingner.com/debs/1443.00/libapt-pkg5.0_1.8.2-1_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/sileoremoveal
|
wget -q https://apt.bingner.com/debs/1443.00/libapt-pkg5.0_1.8.2-1_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/sileoremoveal
|
||||||
wget -q https://apt.bingner.com/debs/1443.00/libapt_1.8.2-1_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/sileoremoveal
|
wget -q https://apt.bingner.com/debs/1443.00/libapt_1.8.2-1_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/sileoremoveal
|
||||||
wget -q https://apt.bingner.com/debs/1443.00/apt-key_1.8.2-1_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/sileoremoveal
|
wget -q https://apt.bingner.com/debs/1443.00/apt-key_1.8.2-1_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/sileoremoveal
|
||||||
wget -q https://apt.bingner.com/debs/1443.00/apt_1.8.2-3_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/sileoremoveal
|
wget -q https://apt.bingner.com/debs/1443.00/apt_1.8.2-3_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/sileoremoveal
|
||||||
wget -q https://apt.bingner.com/debs/1443.00/cydia_1.1.32~b23_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/sileoremoveal
|
wget -q https://apt.bingner.com/debs/1443.00/cydia_1.1.32~b23_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/sileoremoveal
|
||||||
wget -q https://apt.bingner.com/debs/1443.00/cydia-lproj_1.1.32~b1_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/sileoremoveal
|
wget -q https://apt.bingner.com/debs/1443.00/cydia-lproj_1.1.32~b1_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/sileoremoveal
|
||||||
echo "Done. Installing necessary debs."
|
echo "Done. Installing necessary debs."
|
||||||
cd /tmp/sileoremoveal
|
cd /tmp/sileoremoveal
|
||||||
dpkg -i --force-all libapt_1.8.2-1_iphoneos-arm.deb
|
dpkg -i --force-all libapt_1.8.2-1_iphoneos-arm.deb
|
||||||
dpkg -i --force-all libapt-pkg5.0_1.8.2-1_iphoneos-arm.deb
|
dpkg -i --force-all libapt-pkg5.0_1.8.2-1_iphoneos-arm.deb
|
||||||
dpkg -i --force-all apt-key_1.8.2-1_iphoneos-arm.deb
|
dpkg -i --force-all apt-key_1.8.2-1_iphoneos-arm.deb
|
||||||
dpkg -i --force-all apt_1.8.2-3_iphoneos-arm.deb
|
dpkg -i --force-all apt_1.8.2-3_iphoneos-arm.deb
|
||||||
dpkg -i --force-all cydia_1.1.32~b23_iphoneos-arm.deb
|
dpkg -i --force-all cydia_1.1.32~b23_iphoneos-arm.deb
|
||||||
dpkg -i --force-all cydia-lproj_1.1.32~b1_iphoneos-arm.deb
|
dpkg -i --force-all cydia-lproj_1.1.32~b1_iphoneos-arm.deb
|
||||||
echo "Done. Removing Sileo."
|
echo "Done. Removing Sileo."
|
||||||
dpkg -r org.coolstar.sileo
|
dpkg -r org.coolstar.sileo
|
||||||
echo "Done. Upgrading"
|
echo "Done. Upgrading"
|
||||||
apt update
|
apt update
|
||||||
apt full-upgrade -y --allow-downgrades --allow-unauthenticated
|
apt full-upgrade -y --allow-downgrades --allow-unauthenticated
|
||||||
apt remove sileoprep -y
|
apt remove sileoprep -y
|
||||||
uicache -p /Applications/Sileo.app
|
uicache -p /Applications/Sileo.app
|
||||||
uicache -p /Applications/Cydia.app
|
uicache -p /Applications/Cydia.app
|
||||||
rm -rf /tmp/sileoremoveal
|
rm -rf /tmp/sileoremoveal
|
||||||
else
|
else
|
||||||
echo "Sileo is NOT installed, Proccessing ..."
|
echo "Sileo is NOT installed, Proccessing ..."
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
ProcursusMigration(){
|
ProcursusMigration(){
|
||||||
echo "Migrating..."
|
echo "Migrating..."
|
||||||
COREUTILSVER=8.32-4
|
COREUTILSVER=8.32-6
|
||||||
rm /etc/apt/sources.list.d/cydia.list
|
rm /etc/apt/sources.list.d/cydia.list
|
||||||
echo "deb https://apt.procurs.us/ iphoneos-arm64/${CFVER} main" >> /etc/apt/sources.list.d/cydia.list
|
echo "deb https://apt.procurs.us/ iphoneos-arm64/${CFVER} main" >> /etc/apt/sources.list.d/cydia.list
|
||||||
rm -rf /tmp/procursus-migration
|
rm -rf /tmp/procursus-migration
|
||||||
mkdir /tmp/procursus-migration
|
mkdir /tmp/procursus-migration
|
||||||
wget -q http://apt.procurs.us/pool/main/iphoneos-arm64/${CFVER}/procursus-keyring_2020.05.09_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/procursus-migration
|
rm -rf /tmp/coreutils
|
||||||
wget -q https://apt.procurs.us/pool/main/iphoneos-arm64/${CFVER}/coreutils_${COREUTILSVER}_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/procursus-migration
|
mkdir /tmp/coreutils/
|
||||||
dpkg -i /tmp/procursus-migration/procursus-keyring_2020.05.09_iphoneos-arm.deb
|
wget -q http://apt.procurs.us/pool/main/iphoneos-arm64/${CFVER}/procursus-keyring_2020.05.09_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/procursus-migration
|
||||||
apt update
|
wget -q https://apt.procurs.us/pool/main/iphoneos-arm64/${CFVER}/coreutils_${COREUTILSVER}_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/coreutils/
|
||||||
apt install libncursesw6 -y
|
wget -q https://apt.procurs.us/pool/main/iphoneos-arm64/${CFVER}/libzstd1_1.4.5-2_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/procursus-migration
|
||||||
if [ ! -f "/usr/lib/libncurses.6.dylib" ]; then
|
wget -q https://apt.procurs.us/pool/main/iphoneos-arm64/${CFVER}/apt_2.1.10-3_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/procursus-migration
|
||||||
echo "Fixing ..."
|
wget -q https://apt.procurs.us/pool/main/iphoneos-arm64/${CFVER}/libapt-pkg6.0_2.1.10-3_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/procursus-migration
|
||||||
ln -s /usr/lib/libncursesw.6.dylib /usr/lib/libncurses.6.dylib
|
wget -q https://apt.procurs.us/pool/main/iphoneos-arm64/${CFVER}/xz-utils_5.2.5-2_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/procursus-migration
|
||||||
else
|
wget -q https://apt.procurs.us/pool/main/iphoneos-arm64/${CFVER}/liblzma5_5.2.5-2_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/procursus-migration
|
||||||
echo "Nothing To Do!"
|
wget -q https://apt.procurs.us/pool/main/iphoneos-arm64/${CFVER}/libncursesw6_6.2-1_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/procursus-migration
|
||||||
fi
|
wget -q https://apt.procurs.us/pool/main/iphoneos-arm64/${CFVER}/ncurses-term_6.2-1_iphoneos-arm.deb --no-check-certificate --directory-prefix=/tmp/procursus-migration
|
||||||
apt install ncurses-bin -y
|
dpkg -i --force-all /tmp/procursus-migration/libncursesw6_6.2-1_iphoneos-arm.deb
|
||||||
apt install xz-utils diskdev-cmds -y --allow-unauthenticated -u -o APT::Force-LoopBreak=1
|
if [ ! -f "/usr/lib/libncurses.6.dylib" ]; then
|
||||||
apt dist-upgrade -y --allow-unauthenticated -u -o APT::Force-LoopBreak=1
|
echo "Fixing ..."
|
||||||
dpkg -i --force-all /tmp/procursus-migration/coreutils_${COREUTILSVER}_iphoneos-arm.deb
|
ln -s /usr/lib/libncursesw.6.dylib /usr/lib/libncurses.6.dylib
|
||||||
}
|
else
|
||||||
MigrationCleanUp(){
|
echo "Nothing To Do!"
|
||||||
echo "CleaningUp ..."
|
fi
|
||||||
dpkg -r apt1.4
|
dpkg -i --force-all /tmp/procursus-migration/*
|
||||||
apt update
|
apt update
|
||||||
apt purge libplist-utils -y libplist3 -y
|
dpkg -r --force-all libidn2
|
||||||
apt autoremove -y
|
apt --fix-broken install -y -u -o APT::Force-LoopBreak=1
|
||||||
apt install libplist-utils -y libplist++-dev -y libplist++-dev -y libplist++3v5 -y libplist-dev -y libplist3 -y ldid -y
|
apt install diskdev-cmds -y --allow-unauthenticated -u -o APT::Force-LoopBreak=1
|
||||||
}
|
apt dist-upgrade -y --allow-unauthenticated -u -o APT::Force-LoopBreak=1
|
||||||
ProcursusSourcesSetup(){
|
dpkg -i --force-all /tmp/coreutils/coreutils_${COREUTILSVER}_iphoneos-arm.deb
|
||||||
echo "Settings Up Procursus Source ..."
|
}
|
||||||
echo "Types: deb" > /etc/apt/sources.list.d/procursus.sources
|
MigrationCleanUp(){
|
||||||
echo "URIs: https://apt.procurs.us/" >> /etc/apt/sources.list.d/procursus.sources
|
echo "CleaningUp ..."
|
||||||
echo "Suites: iphoneos-arm64/${CFVER}" >> /etc/apt/sources.list.d/procursus.sources
|
dpkg -r apt1.4
|
||||||
echo "Components: main" >> /etc/apt/sources.list.d/procursus.sources
|
apt update
|
||||||
}
|
apt purge libplist-utils -y libplist3 -y
|
||||||
checkDependencies
|
apt autoremove -y
|
||||||
checkiOSVersion
|
apt install libplist-utils -y libplist++-dev -y libplist++-dev -y libplist++3v5 -y libplist-dev -y libplist3 -y ldid -y
|
||||||
echo -e "\e[32mStarting Migration On iOS $VER ....\e[0m"
|
}
|
||||||
checkSileo
|
ProcursusSourcesSetup(){
|
||||||
ProcursusMigration
|
echo "Settings Up Procursus Source ..."
|
||||||
MigrationCleanUp
|
echo "Types: deb" > /etc/apt/sources.list.d/procursus.sources
|
||||||
ProcursusSourcesSetup
|
echo "URIs: https://apt.procurs.us/" >> /etc/apt/sources.list.d/procursus.sources
|
||||||
echo -e "\e[32mMigration Finished!\e[0m"
|
echo "Suites: iphoneos-arm64/${CFVER}" >> /etc/apt/sources.list.d/procursus.sources
|
||||||
echo -e "\e[32mBack to Uncursus Script...\e[0m"
|
echo "Components: main" >> /etc/apt/sources.list.d/procursus.sources
|
||||||
|
}
|
||||||
|
checkDependencies
|
||||||
|
checkiOSVersion
|
||||||
|
echo -e "\e[32mStarting Migration On iOS $VER ....\e[0m"
|
||||||
|
checkSileo
|
||||||
|
ProcursusMigration
|
||||||
|
MigrationCleanUp
|
||||||
|
ProcursusSourcesSetup
|
||||||
|
echo -e "\e[32mMigration Finished!\e[0m"
|
||||||
|
echo -e "\e[32mBack to Uncursus Script...\e[0m"
|
||||||
fi
|
fi
|
||||||
|
Reference in New Issue
Block a user