mirror of
https://github.com/faroukbmiled/RyukGram.git
synced 2026-08-05 18:58:35 +02:00
modded scinsta with additional features and fixes for recent instagram version
This commit is contained in:
Executable
+28
@@ -0,0 +1,28 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
echo 'Note: This script is meant to be used while developing the tweak.'
|
||||
echo ' This does not build "libflex" or "FLEXing", they must be built manually and moved to ./packages'
|
||||
echo
|
||||
|
||||
if [ "$1" == "true" ];
|
||||
then
|
||||
_scinsta_dev_before
|
||||
|
||||
# Build tweak and package into ipa
|
||||
./build.sh sideload --dev
|
||||
|
||||
_scinsta_dev_after
|
||||
else
|
||||
_scinsta_devquick_before
|
||||
|
||||
# Built tweak and deploy to live container
|
||||
make clean
|
||||
make DEV=1
|
||||
|
||||
# Change framework locations to @rpath
|
||||
install_name_tool -change "/Library/Frameworks/CydiaSubstrate.framework/CydiaSubstrate" "@rpath/CydiaSubstrate.framework/CydiaSubstrate" ".theos/obj/debug/SCInsta.dylib" 2>/dev/null || true
|
||||
|
||||
_scinsta_devquick_after
|
||||
fi
|
||||
Reference in New Issue
Block a user