1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
|
gxx := $(shell xcrun --sdk iphoneos -f g++)
sdk := $(shell xcodebuild -sdk iphoneos -version Path)
flags :=
link :=
libs :=
dpkg := dpkg-deb -Zlzma
flags += -F$(sdk)/System/Library/PrivateFrameworks
flags += -I. -isystem sysroot/usr/include
flags += -fmessage-length=0
flags += -g0 -O2
flags += -fvisibility=hidden
flags += -idirafter icu/icuSources/common
flags += -idirafter icu/icuSources/i18n
flags += -Wall
flags += -Wno-unknown-warning-option
flags += -Wno-logical-op-parentheses
flags += -Wno-dangling-else
flags += -Wno-shift-op-parentheses
flags += -Wno-deprecated-declarations
xflags :=
xflags += -fobjc-call-cxx-cdtors
xflags += -fvisibility-inlines-hidden
link += -Lsysroot/usr/lib
link += -multiply_defined suppress
libs += -framework CoreFoundation
libs += -framework CoreGraphics
libs += -framework Foundation
libs += -framework GraphicsServices
libs += -framework IOKit
libs += -framework QuartzCore
libs += -framework SpringBoardServices
libs += -framework SystemConfiguration
libs += -framework WebCore
libs += -framework WebKit
libs += -lapr-1
libs += -lapt-pkg
libs += -licucore
libs += -lpcre
uikit :=
uikit += -framework UIKit
backrow :=
backrow += -FAppleTV -framework BackRow -framework AppleTV
version := $(shell ./version.sh)
cycc = $(gxx) -arch armv6 -o $@ -miphoneos-version-min=2.0 -isysroot $(sdk) -idirafter /usr/include -F{sysroot,}/Library/Frameworks
cycc += -marm # @synchronized
cycc += -mcpu=arm1176jzf-s
cycc += -mllvm -arm-reserve-r9
link += -lgcc_s.1
dirs := Menes CyteKit Cydia SDURLCache
code := $(foreach dir,$(dirs),$(wildcard $(foreach ext,h hpp c cpp m mm,$(dir)/*.$(ext))))
code := $(filter-out SDURLCache/SDURLCacheTests.m,$(code))
code += MobileCydia.mm Version.mm iPhonePrivate.h Cytore.hpp lookup3.c Sources.h Sources.mm
source := $(filter %.m,$(code)) $(filter %.mm,$(code))
source += $(filter %.c,$(code)) $(filter %.cpp,$(code))
header := $(filter %.h,$(code)) $(filter %.hpp,$(code))
object := $(source)
object := $(object:.c=.o)
object := $(object:.cpp=.o)
object := $(object:.m=.o)
object := $(object:.mm=.o)
object := $(object:%=Objects/%)
images := $(shell find MobileCydia.app/ -type f -name '*.png')
images := $(images:%=Images/%)
lproj_deb := debs/cydia-lproj_$(version)_iphoneos-arm.deb
all: MobileCydia
clean:
rm -f MobileCydia postinst
rm -rf Objects/ Images/
Objects/%.o: %.c $(header)
@mkdir -p $(dir $@)
@echo "[cycc] $<"
@$(cycc) -c -x c $<
Objects/%.o: %.m $(header)
@mkdir -p $(dir $@)
@echo "[cycc] $<"
@$(cycc) -c $< $(flags)
Objects/%.o: %.mm $(header)
@mkdir -p $(dir $@)
@echo "[cycc] $<"
@$(cycc) -std=c++11 -c $< $(flags) $(xflags)
Objects/Version.o: Version.h
Images/%.png: %.png
@mkdir -p $(dir $@)
@echo "[pngc] $<"
@./pngcrush.sh $< $@
sysroot: sysroot.sh
@echo "Your ./sysroot/ is either missing or out of date. Please read compiling.txt for help." 1>&2
@echo 1>&2
@exit 1
MobileCydia: sysroot $(object) entitlements.xml
@echo "[link] $(object:Objects/%=%)"
@$(cycc) $(filter %.o,$^) $(flags) $(link) $(libs) $(uikit) -Wl,-sdk_version,7.0
@mkdir -p bins
@cp -a $@ bins/$@-$(version)
@echo "[strp] $@"
@strip -no_uuid $@
@echo "[uikt] $@"
@./uikit.sh $@
@echo "[sign] $@"
@ldid -T0 -Sentitlements.xml $@ || { rm -f $@ && false; }
CydiaAppliance: CydiaAppliance.mm
$(cycc) $(filter %.mm,$^) $(flags) $(link) -bundle $(libs) $(backrow)
cfversion: cfversion.mm
$(cycc) $(filter %.mm,$^) $(flags) $(link) -framework CoreFoundation
@ldid -T0 -S $@
postinst: postinst.mm Sources.mm Sources.h CyteKit/stringWithUTF8Bytes.mm CyteKit/stringWithUTF8Bytes.h CyteKit/UCPlatform.h
$(cycc) $(filter %.mm,$^) $(flags) $(link) -framework CoreFoundation -framework Foundation -framework UIKit -lpcre
@ldid -T0 -S $@
debs/cydia_$(version)_iphoneos-arm.deb: MobileCydia preinst postinst cfversion $(images) $(shell find MobileCydia.app) cydia.control Library/firmware.sh Library/startup
sudo rm -rf _
mkdir -p _/var/lib/cydia
mkdir -p _/etc/apt
cp -a Trusted.gpg _/etc/apt/trusted.gpg.d
cp -a Sources.list _/etc/apt/sources.list.d
mkdir -p _/usr/libexec
cp -a Library _/usr/libexec/cydia
cp -a sysroot/usr/bin/du _/usr/libexec/cydia
cp -a cfversion _/usr/libexec/cydia
mkdir -p _/System/Library
cp -a LaunchDaemons _/System/Library/LaunchDaemons
mkdir -p _/Applications
cp -a MobileCydia.app _/Applications/Cydia.app
rm -rf _/Applications/Cydia.app/*.lproj
cp -a MobileCydia _/Applications/Cydia.app/MobileCydia
cd MobileCydia.app && find . -name '*.png' -exec cp -af ../Images/MobileCydia.app/{} ../_/Applications/Cydia.app/{} ';'
mkdir -p _/Applications/Cydia.app/Sources
ln -s /usr/share/bigboss/icons/bigboss.png _/Applications/Cydia.app/Sources/apt.bigboss.us.com.png
ln -s /usr/share/bigboss/icons/planetiphones.png _/Applications/Cydia.app/Sections/"Planet-iPhones Mods.png"
#mkdir -p _/Applications/AppleTV.app/Appliances
#cp -a Cydia.frappliance _/Applications/AppleTV.app/Appliances
#cp -a CydiaAppliance _/Applications/AppleTV.app/Appliances/Cydia.frappliance
#mkdir -p _/Applications/Lowtide.app/Appliances
#ln -s {/Applications/AppleTV,_/Applications/Lowtide}.app/Appliances/Cydia.frappliance
mkdir -p _/DEBIAN
./control.sh cydia.control _ >_/DEBIAN/control
cp -a preinst postinst _/DEBIAN/
find _ -exec touch -t "$$(date -j -f "%s" +"%Y%m%d%H%M.%S" "$$(git show --format='format:%ct' | head -n 1)")" {} ';'
sudo chown -R 0 _
sudo chgrp -R 0 _
sudo chmod 6755 _/Applications/Cydia.app/MobileCydia
mkdir -p debs
ln -sf debs/cydia_$(version)_iphoneos-arm.deb Cydia.deb
$(dpkg) -b _ Cydia.deb
@echo "$$(stat -L -f "%z" Cydia.deb) $$(stat -f "%Y" Cydia.deb)"
$(lproj_deb): $(shell find MobileCydia.app -name '*.strings') cydia-lproj.control
sudo rm -rf __
mkdir -p __/Applications/Cydia.app
cp -a MobileCydia.app/*.lproj __/Applications/Cydia.app
mkdir -p __/DEBIAN
./control.sh cydia-lproj.control __ >__/DEBIAN/control
sudo chown -R 0 __
sudo chgrp -R 0 __
mkdir -p debs
ln -sf debs/cydia-lproj_$(version)_iphoneos-arm.deb Cydia_.deb
$(dpkg) -b __ Cydia_.deb
@echo "$$(stat -L -f "%z" Cydia_.deb) $$(stat -f "%Y" Cydia_.deb)"
package: debs/cydia_$(version)_iphoneos-arm.deb $(lproj_deb)
.PHONY: all clean package
|