]> git.saurik.com Git - cycript.git/blob - Darwin-arm.mk
Fixed packaging on Linux.
[cycript.git] / Darwin-arm.mk
1 flags += -F${PKG_ROOT}/System/Library/PrivateFrameworks
2
3 all += Cycript.$(dll) #cyrver
4
5 arch := iphoneos-arm
6 ldid := ldid -S
7 console += -framework UIKit
8 depends += readline libffi mobilesubstrate
9
10 Cycript.$(dll): Connector.o
11 $(target)g++ $(flags) -dynamiclib -o $@ $(filter %.o,$^) \
12 -lobjc -lapr-1 -lsubstrate \
13 -framework CoreFoundation
14 ldid -S $@
15
16 cyrver: Server.o
17 $(target)g++ $(flags) -o $@ $(filter %.o,$^) \
18 -lapr-1 -lsubstrate -framework CFNetwork
19 $(ldid) $@
20
21 extra:
22 mkdir -p package/System/Library/LaunchDaemons
23 #cp -a com.saurik.Cyrver.plist package/System/Library/LaunchDaemons
24 mkdir -p package/Library/MobileSubstrate/DynamicLibraries
25 if [[ -e Settings.plist ]]; then \
26 mkdir -p package/Library/PreferenceLoader/Preferences; \
27 cp -a Settings.png package/Library/PreferenceLoader/Preferences/CycriptIcon.png; \
28 cp -a Settings.plist package/Library/PreferenceLoader/Preferences/Cycript.plist; \
29 fi
30 if [[ -e Tweak.plist ]]; then cp -a Tweak.plist package/Library/MobileSubstrate/DynamicLibraries/Cycript.plist; fi
31 cp -a Cycript.$(dll) package/Library/MobileSubstrate/DynamicLibraries
32