]>
Commit | Line | Data |
---|---|---|
1 | ios := 3.2 | |
2 | ||
3 | flags := | |
4 | link := | |
5 | ||
6 | #dpkg := /Library/Cydia/bin/dpkg-deb -Zlzma | |
7 | dpkg := dpkg-deb | |
8 | ||
9 | sdk := /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS$(ios).sdk | |
10 | ||
11 | flags += -F$(sdk)/System/Library/PrivateFrameworks | |
12 | flags += -I. -isystem sysroot/usr/include -Lsysroot/usr/lib | |
13 | flags += -Wall -Werror -Wno-deprecated-declarations | |
14 | flags += -fmessage-length=0 | |
15 | flags += -g0 -O2 | |
16 | flags += -fobjc-call-cxx-cdtors -fobjc-exceptions | |
17 | ||
18 | link += -framework CoreFoundation | |
19 | link += -framework CoreGraphics | |
20 | link += -framework Foundation | |
21 | link += -framework GraphicsServices | |
22 | link += -framework IOKit | |
23 | link += -framework JavaScriptCore | |
24 | link += -framework QuartzCore | |
25 | link += -framework SystemConfiguration | |
26 | link += -framework UIKit | |
27 | link += -framework WebCore | |
28 | link += -framework WebKit | |
29 | ||
30 | link += -lapr-1 | |
31 | link += -lapt-pkg | |
32 | link += -lpcre | |
33 | ||
34 | link += -multiply_defined suppress | |
35 | ||
36 | #cycc = cycc -r4.2 -i$(ios) -o$@ | |
37 | gxx := /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/g++ | |
38 | cycc = $(gxx) -arch armv6 -o $@ -mcpu=arm1176jzf-s -miphoneos-version-min=$(ios) -isysroot $(sdk) -idirafter /usr/include -F/Library/Frameworks | |
39 | ||
40 | all: Cydia | |
41 | ||
42 | clean: | |
43 | rm -f Cydia | |
44 | ||
45 | Cydia: Cydia.mm Reachability.mm UICaboodle/*.mm iPhonePrivate.h | |
46 | $(cycc) $(filter %.mm,$^) $(flags) $(link) | |
47 | ||
48 | package: Cydia | |
49 | sudo rm -rf _ | |
50 | mkdir -p _/var/lib/cydia | |
51 | ||
52 | mkdir -p _/usr/libexec | |
53 | cp -a Library _/usr/libexec/cydia | |
54 | cp -a sysroot/usr/bin/du _/usr/libexec/cydia | |
55 | ||
56 | mkdir -p _/System/Library | |
57 | cp -a LaunchDaemons _/System/Library/LaunchDaemons | |
58 | ||
59 | mkdir -p _/Applications | |
60 | cp -a Cydia.app _/Applications/Cydia.app | |
61 | cp -a Cydia _/Applications/Cydia.app/Cydia_ | |
62 | ||
63 | mkdir -p _/System/Library/PreferenceBundles | |
64 | cp -a CydiaSettings.bundle _/System/Library/PreferenceBundles/CydiaSettings.bundle | |
65 | ||
66 | mkdir -p _/DEBIAN | |
67 | echo "$$(cat control)"$$'\nInstalled-Size: '"$$(du -s _ | cut -f 1)" > _/DEBIAN/control | |
68 | ||
69 | sudo chown -R 0 _ | |
70 | sudo chgrp -R 0 _ | |
71 | sudo chmod 6755 _/Applications/Cydia.app/Cydia_ | |
72 | ||
73 | $(dpkg) -b _ $(shell grep ^Package: control | cut -d ' ' -f 2-)_$(shell grep ^Version: control | cut -d ' ' -f 2)_iphoneos-arm.deb | |
74 | ||
75 | .PHONY: all clean sign |