-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile
27 lines (22 loc) · 1.04 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
ARCHS = armv7 arm64
TARGET = iphone:clang:latest:7.0
TARGET_IPHONEOS_DEPLOYMENT_VERSION = 7.0
THEOS_PACKAGE_DIR_NAME = debs
ADDITIONAL_OBJCFLAGS = -fobjc-arc
include $(THEOS)/makefiles/common.mk
TWEAK_NAME = InstaBetter
InstaBetter_FILES = InstaHelper.xm Tweak.xm instabetterprefs/InstaBetterPrefs.mm $(wildcard lib/*.m)
InstaBetter_LDFLAGS += -Wl,-segalign,4000
InstaBetter_FRAMEWORKS = UIKit AVFoundation Foundation CoreGraphics ImageIO Accelerate QuartzCore MapKit CoreLocation AssetsLibrary MobileCoreServices
InstaBetter_WEAK_FRAMEWORKS = Photos
InstaBetter_PRIVATE_FRAMEWORKS = Preferences BulletinBoard
include $(THEOS_MAKE_PATH)/tweak.mk
include $(THEOS)/makefiles/bundle.mk
after-install::
install.exec "killall -9 Instagram && activator send com.bd452.bypass && activator send com.burbn.instagram"
install.exec "killall -9 Preferences"
install.exec "activator send com.bd452.bypass"
install.exec "activator send com.burbn.instagram"
SUBPROJECTS += instabetterprefs
SUBPROJECTS += instabetterflipswitch
include $(THEOS_MAKE_PATH)/aggregate.mk