]>
Commit | Line | Data |
---|---|---|
1 | ifndef PKG_TARG | |
2 | target := | |
3 | else | |
4 | target := $(PKG_TARG)- | |
5 | endif | |
6 | ||
7 | package: | |
8 | ||
9 | flags := -framework CFNetwork -framework JavaScriptCore -framework WebCore -install_name /usr/lib/libcycript.dylib -I. | |
10 | menes := $(shell cd ~; pwd)/menes | |
11 | ||
12 | link := -framework CoreFoundation -framework Foundation -F${PKG_ROOT}/System/Library/PrivateFrameworks -L$(menes)/mobilesubstrate -lsubstrate -lapr-1 -lffi | |
13 | ||
14 | all: cycript libcycript.dylib libcycript.plist | |
15 | ||
16 | clean: | |
17 | rm -f libcycript.dylib cycript libcycript.plist Struct.hpp | |
18 | ||
19 | libcycript.plist: Bridge.def makefile | |
20 | sed -e 's/^C/0/;s/^F/1/;s/^V/2/' Bridge.def | while read -r line; do \ | |
21 | if [[ $$line == '' ]]; then \ | |
22 | continue; \ | |
23 | fi; \ | |
24 | set $$line; \ | |
25 | if [[ $$1 =~ [#fl] ]]; then \ | |
26 | continue; \ | |
27 | fi; \ | |
28 | echo "$$2 = ($$1, \"$$3\");"; \ | |
29 | done >$@ | |
30 | ||
31 | Struct.hpp: | |
32 | $$($(target)gcc -print-prog-name=cc1obj) -print-objc-runtime-info </dev/null >$@ | |
33 | ||
34 | libcycript.dylib: Library.mm makefile $(menes)/mobilesubstrate/substrate.h sig/*.[ch]pp Struct.hpp | |
35 | $(target)g++ -dynamiclib -mthumb -g0 -O2 -Wall -Werror -o $@ $(filter %.cpp,$^) $(filter %.mm,$^) -lobjc -I$(menes)/mobilesubstrate $(link) $(flags) | |
36 | ldid -S $@ | |
37 | ||
38 | cycript: Application.mm libcycript.dylib | |
39 | $(target)g++ -g0 -O2 -Wall -Werror -o $@ $(filter %.mm,$^) -framework UIKit -framework Foundation -framework CoreFoundation -lobjc libcycript.dylib | |
40 | ldid -S cycript | |
41 | ||
42 | package: all | |
43 | rm -rf package | |
44 | mkdir -p package/DEBIAN | |
45 | cp -a control package/DEBIAN | |
46 | mkdir -p package/Library/MobileSubstrate/DynamicLibraries | |
47 | if [[ -e Settings.plist ]]; then \ | |
48 | mkdir -p package/Library/PreferenceLoader/Preferences; \ | |
49 | cp -a Settings.png package/Library/PreferenceLoader/Preferences/CycriptIcon.png; \ | |
50 | cp -a Settings.plist package/Library/PreferenceLoader/Preferences/Cycript.plist; \ | |
51 | fi | |
52 | if [[ -e Tweak.plist ]]; then cp -a Tweak.plist package/Library/MobileSubstrate/DynamicLibraries/Cycript.plist; fi | |
53 | #cp -a Cycript.dylib package/Library/MobileSubstrate/DynamicLibraries | |
54 | mkdir -p package/usr/{bin,lib} | |
55 | cp -a libcycript.dylib package/usr/lib | |
56 | ln -s /usr/lib/libcycript.dylib package/Library/MobileSubstrate/DynamicLibraries/Cycript.dylib | |
57 | cp -a cycript package/usr/bin | |
58 | cp -a libcycript.plist package/usr/lib | |
59 | dpkg-deb -b package $(shell grep ^Package: control | cut -d ' ' -f 2-)_$(shell grep ^Version: control | cut -d ' ' -f 2)_iphoneos-arm.deb | |
60 | ||
61 | .PHONY: all clean extra package |