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