-ifndef PKG_TARG
-target :=
-else
-target := $(PKG_TARG)-
-endif
+ios := 3.2
-frameworks :=
+flags :=
+link :=
-ifneq ($(wildcard $(PKG_ROOT)/System/Library/*Frameworks/LayerKit.framework),)
-frameworks += -framework LayerKit
-endif
+#dpkg := /Library/Cydia/bin/dpkg-deb -Zlzma
+dpkg := dpkg-deb
-all: Cydia exec
+flags += -F/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS$(ios).sdk/System/Library/PrivateFrameworks
+flags += -I. -isystem sysroot/usr/include -Lsysroot/usr/lib
+flags += -Wall -Werror -Wno-deprecated-declarations
+flags += -fmessage-length=0
+flags += -g0 -O2
+flags += -fobjc-call-cxx-cdtors -fobjc-exceptions
-clean:
- rm -f Cydia exec
+link += -framework CoreFoundation
+link += -framework CoreGraphics
+link += -framework Foundation
+link += -framework GraphicsServices
+link += -framework IOKit
+link += -framework JavaScriptCore
+link += -framework QuartzCore
+link += -framework SystemConfiguration
+link += -framework UIKit
+link += -framework WebCore
+link += -framework WebKit
+
+link += -lapr-1
+link += -lapt-pkg
+link += -lpcre
+
+link += -multiply_defined suppress
-exec: exec.mm makefile
- $(target)g++ -Wall -Werror -o $@ $< -framework Foundation -framework CoreFoundation -lobjc
+all: Cydia
+
+clean:
+ rm -f Cydia
-Cydia: Cydia.mm ../uicaboodle.m/*.mm *.h makefile
- $(target)g++ -march=armv6 -mcpu=arm1176jzf-s -I../uicaboodle.m -fobjc-call-cxx-cdtors -g0 -O2 -Wall -Werror -o $@ $(filter %.mm,$^) -framework UIKit -framework IOKit -framework CoreFoundation -framework Foundation -framework CoreGraphics -framework GraphicsServices $(frameworks) -lobjc -lapt-pkg -lpcre -fobjc-exceptions -I/apl/i20 -F"$${PKG_ROOT}"/System/Library/PrivateFrameworks
+Cydia: Cydia.mm Reachability.mm UICaboodle/*.mm
+ cycc -r4.2 -i$(ios) -o$@ -- $(filter %.mm,$^) $(flags) $(link)
-sign: Cydia
- CODESIGN_ALLOCATE=$$(which "$(target)codesign_allocate") /apl/tel/util/ldid -S Cydia
+package: Cydia
+ rm -rf _
+ mkdir -p _/var/lib/cydia
+
+ mkdir -p _/usr/libexec
+ cp -a Library _/usr/libexec/cydia
+ # XXX: fix du
+ #cp -a /apl/tel/dest/iphoneos-arm/coreutils/usr/bin/du _/usr/libexec/cydia
+
+ mkdir -p _/System/Library
+ cp -a LaunchDaemons _/System/Library/LaunchDaemons
+
+ mkdir -p _/Applications
+ cp -a Cydia.app _/Applications/Cydia.app
+ cp -a Cydia _/Applications/Cydia.app/Cydia_
+ chmod 6755 _/Applications/Cydia.app/Cydia_
+
+ mkdir -p _/System/Library/PreferenceBundles
+ cp -a CydiaSettings.bundle _/System/Library/PreferenceBundles/CydiaSettings.bundle
+
+ mkdir -p _/DEBIAN
+ echo "$$(cat control)"$$'\nInstalled-Size: '"$$(du -s _ | cut -f 1)" > _/DEBIAN/control
+
+ $(dpkg) -b _ $(shell grep ^Package: control | cut -d ' ' -f 2-)_$(shell grep ^Version: control | cut -d ' ' -f 2)_iphoneos-arm.deb
.PHONY: all clean sign