]>
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 UICaboodle/*.mm iPhonePrivate.h | |
46 | $(cycc) $(filter %.mm,$^) $(flags) $(link) | |
47 | ldid -Slaunch.xml $@ | |
48 | ||
49 | package: Cydia | |
50 | sudo rm -rf _ | |
51 | mkdir -p _/var/lib/cydia | |
52 | ||
53 | mkdir -p _/usr/libexec | |
54 | cp -a Library _/usr/libexec/cydia | |
55 | cp -a sysroot/usr/bin/du _/usr/libexec/cydia | |
56 | ||
57 | mkdir -p _/System/Library | |
58 | cp -a LaunchDaemons _/System/Library/LaunchDaemons | |
59 | ||
60 | mkdir -p _/Applications | |
61 | cp -a Cydia.app _/Applications/Cydia.app | |
62 | cp -a Cydia _/Applications/Cydia.app/Cydia_ | |
63 | ||
64 | mkdir -p _/System/Library/PreferenceBundles | |
65 | cp -a CydiaSettings.bundle _/System/Library/PreferenceBundles/CydiaSettings.bundle | |
66 | ||
67 | mkdir -p _/DEBIAN | |
68 | echo "$$(cat control)"$$'\nInstalled-Size: '"$$(du -s _ | cut -f 1)" > _/DEBIAN/control | |
69 | ||
70 | sudo chown -R 0 _ | |
71 | sudo chgrp -R 0 _ | |
72 | sudo chmod 6755 _/Applications/Cydia.app/Cydia_ | |
73 | ||
74 | $(dpkg) -b _ $(shell grep ^Package: control | cut -d ' ' -f 2-)_$(shell grep ^Version: control | cut -d ' ' -f 2)_iphoneos-arm.deb | |
75 | ||
76 | .PHONY: all clean sign |