]>
Commit | Line | Data |
---|---|---|
1 | sdks := /Developer/Platforms/iPhoneOS.platform/Developer/SDKs | |
2 | ||
3 | ios := 4.0 | |
4 | gcc := 4.2 | |
5 | ||
6 | flags := | |
7 | link := | |
8 | ||
9 | ifeq (o,O) # gzip is actually better | |
10 | dpkg := /Library/Cydia/bin/dpkg-deb | |
11 | ifeq ($(wildcard $(dpkg)),$(dpkg)) | |
12 | dpkg := $(dpkg) -zlzma | |
13 | else | |
14 | dpkg := dpkg-deb -zbzip2 | |
15 | endif | |
16 | else | |
17 | dpkg := dpkg-deb | |
18 | endif | |
19 | ||
20 | sdk := $(sdks)/iPhoneOS$(ios).sdk | |
21 | ||
22 | flags += -F$(sdk)/System/Library/PrivateFrameworks | |
23 | flags += -I. -isystem sysroot/usr/include -Lsysroot/usr/lib | |
24 | flags += -Wall -Werror -Wno-deprecated-declarations | |
25 | flags += -fmessage-length=0 | |
26 | flags += -g0 -O2 | |
27 | flags += -fobjc-call-cxx-cdtors -fobjc-exceptions | |
28 | ||
29 | link += -framework CoreFoundation | |
30 | link += -framework CoreGraphics | |
31 | link += -framework Foundation | |
32 | link += -framework GraphicsServices | |
33 | link += -framework IOKit | |
34 | link += -framework JavaScriptCore | |
35 | link += -framework QuartzCore | |
36 | link += -framework SpringBoardServices | |
37 | link += -framework SystemConfiguration | |
38 | link += -framework WebCore | |
39 | link += -framework WebKit | |
40 | ||
41 | link += -lapr-1 | |
42 | link += -lapt-pkg | |
43 | link += -lpcre | |
44 | ||
45 | link += -multiply_defined suppress | |
46 | ||
47 | uikit := | |
48 | uikit += -framework UIKit | |
49 | ||
50 | backrow := | |
51 | backrow += -FAppleTV -framework BackRow -framework AppleTV | |
52 | ||
53 | version := $(shell ./version.sh) | |
54 | ||
55 | #cycc = cycc -r4.2 -i$(ios) -o$@ | |
56 | gxx := /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/g++-$(gcc) | |
57 | cycc = $(gxx) -mthumb -arch armv6 -o $@ -mcpu=arm1176jzf-s -miphoneos-version-min=2.0 -isysroot $(sdk) -idirafter /usr/include -F/Library/Frameworks | |
58 | ||
59 | all: MobileCydia | |
60 | ||
61 | clean: | |
62 | rm -f MobileCydia | |
63 | ||
64 | %.o: %.c | |
65 | $(cycc) -c -o $@ -x c $< | |
66 | ||
67 | sysroot: | |
68 | @echo "Please read compiling.txt: you do not have a ./sysroot/ folder with the on-device requirements." 1>&2 | |
69 | @echo 1>&2 | |
70 | @exit 1 | |
71 | ||
72 | MobileCydia: sysroot MobileCydia.mm UICaboodle/*.h UICaboodle/*.mm SDURLCache/SDURLCache.h SDURLCache/SDURLCache.m iPhonePrivate.h lookup3.o Cytore.hpp | |
73 | $(cycc) $(filter %.mm,$^) $(filter %.o,$^) $(foreach m,$(filter %.m,$^),-x objective-c++ $(m)) $(flags) $(link) $(uikit) -DCYDIA_VERSION='"$(version)"' | |
74 | ldid -Slaunch.xml $@ || { rm -f $@ && false; } | |
75 | ||
76 | CydiaAppliance: CydiaAppliance.mm | |
77 | $(cycc) $(filter %.mm,$^) $(flags) -bundle $(link) $(backrow) | |
78 | ||
79 | package: MobileCydia | |
80 | sudo rm -rf _ | |
81 | mkdir -p _/var/lib/cydia | |
82 | ||
83 | mkdir -p _/usr/libexec | |
84 | cp -a Library _/usr/libexec/cydia | |
85 | cp -a sysroot/usr/bin/du _/usr/libexec/cydia | |
86 | ||
87 | mkdir -p _/System/Library | |
88 | cp -a LaunchDaemons _/System/Library/LaunchDaemons | |
89 | ||
90 | mkdir -p _/Applications | |
91 | cp -a MobileCydia.app _/Applications/Cydia.app | |
92 | cp -a MobileCydia _/Applications/Cydia.app/MobileCydia | |
93 | ||
94 | #mkdir -p _/Applications/Lowtide.app/Appliances | |
95 | #cp -a Cydia.frappliance _/Applications/Lowtide.app/Appliances | |
96 | #cp -a CydiaAppliance _/Applications/Lowtide.app/Appliances/Cydia.frappliance | |
97 | ||
98 | mkdir -p _/System/Library/PreferenceBundles | |
99 | cp -a CydiaSettings.bundle _/System/Library/PreferenceBundles/CydiaSettings.bundle | |
100 | ||
101 | mkdir -p _/DEBIAN | |
102 | ./control.sh _ >_/DEBIAN/control | |
103 | ||
104 | find _ -name '*.png' -exec ./pngcrush.sh '{}' ';' | |
105 | ||
106 | sudo chown -R 0 _ | |
107 | sudo chgrp -R 0 _ | |
108 | sudo chmod 6755 _/Applications/Cydia.app/MobileCydia | |
109 | ||
110 | mkdir -p debs | |
111 | ln -sf debs/cydia_$(version)_iphoneos-arm.deb Cydia.deb | |
112 | $(dpkg) -b _ Cydia.deb | |
113 | @echo "$$(stat -L -f "%z" Cydia.deb) $$(stat -f "%Y" Cydia.deb)" | |
114 | ||
115 | .PHONY: all clean sign |