mirror of
https://github.com/faroukbmiled/RyukGram.git
synced 2026-04-22 20:26:15 +02:00
4ebd4d2c0d
settings UI, build scripts, workflows, control file, and Makefile
- Added built-in sideload compatibility patch:
keychain access group discovery, SecItem rebinding via fishhook,
NSFileManager app group fallback, Cloud Kit entitlement patches
- Added fishhook library (modules/fishhook/) for C function rebinding
- Updated README with new features, repo links, and credits
- Updated GitHub Actions workflows for RyukGram naming
- Plist renamed from SCInsta.plist to RyukGram.plist
22 lines
914 B
Makefile
22 lines
914 B
Makefile
TARGET := iphone:clang:16.2
|
|
INSTALL_TARGET_PROCESSES = Instagram
|
|
ARCHS = arm64
|
|
|
|
include $(THEOS)/makefiles/common.mk
|
|
|
|
TWEAK_NAME = RyukGram
|
|
|
|
$(TWEAK_NAME)_FILES = $(shell find src -type f \( -iname \*.x -o -iname \*.xm -o -iname \*.m \)) $(wildcard modules/JGProgressHUD/*.m) modules/fishhook/fishhook.c
|
|
$(TWEAK_NAME)_FRAMEWORKS = UIKit Foundation CoreGraphics Photos CoreServices SystemConfiguration SafariServices Security QuartzCore
|
|
$(TWEAK_NAME)_PRIVATE_FRAMEWORKS = Preferences
|
|
$(TWEAK_NAME)_CFLAGS = -fobjc-arc -Wno-unsupported-availability-guard -Wno-unused-value -Wno-deprecated-declarations -Wno-nullability-completeness -Wno-unused-function -Wno-incompatible-pointer-types
|
|
$(TWEAK_NAME)_LOGOSFLAGS = --c warnings=none
|
|
|
|
CCFLAGS += -std=c++11
|
|
|
|
include $(THEOS_MAKE_PATH)/tweak.mk
|
|
|
|
# Build FLEXing for sideloading (not building in dev-mode)
|
|
ifdef SIDELOAD
|
|
$(TWEAK_NAME)_SUBPROJECTS += modules/flexing
|
|
endif |