X-Git-Url: https://git.saurik.com/cydia.git/blobdiff_plain/81ab76dc9259aa9263b2fdd529fde70028480832..b36d03d7ec3054b8d1060e9bcc560bc3a3c82205:/makefile diff --git a/makefile b/makefile index 3491be4b..9236ff6f 100644 --- a/makefile +++ b/makefile @@ -1,25 +1,69 @@ -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 + +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 + +all: Cydia clean: - rm -f Cydia exec + rm -f Cydia -exec: exec.mm makefile - $(target)g++ -Wall -Werror -o $@ $< -framework Foundation -framework CoreFoundation -lobjc +Cydia: Cydia.mm Reachability.mm UICaboodle/*.mm iPhonePrivate.h + cycc -r4.2 -i$(ios) -o$@ -- $(filter %.mm,$^) $(flags) $(link) -Cydia: Cydia.mm ../uicaboodle.m/*.mm *.h makefile - $(target)g++ -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 - #CODESIGN_ALLOCATE=$$(which "$(target)codesign_allocate") /apl/tel/util/ldid -S Cydia +package: Cydia + sudo rm -rf _ + mkdir -p _/var/lib/cydia + + mkdir -p _/usr/libexec + cp -a Library _/usr/libexec/cydia + cp -a sysroot/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_ + + 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 + + sudo chown -R 0 _ + sudo chgrp -R 0 _ + sudo chmod 6755 _/Applications/Cydia.app/Cydia_ + + $(dpkg) -b _ $(shell grep ^Package: control | cut -d ' ' -f 2-)_$(shell grep ^Version: control | cut -d ' ' -f 2)_iphoneos-arm.deb -.PHONY: all clean +.PHONY: all clean sign