summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2011-03-07 04:44:07 -0800
committerJay Freeman (saurik) <saurik@saurik.com>2011-03-08 01:50:02 -0800
commit8a4d4662c80784a8a7102a02e8f4af35719ca86f (patch)
tree934ab71cffae75e8c89488d61c1a93bc5ca269ac
parent34841cd7efb9b3189adc3d6333960b41cc3d5475 (diff)
Cache pngcrush results for faster package build.
-rw-r--r--.gitignore1
-rw-r--r--makefile15
2 files changed, 13 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index f72698b..36277ca 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@ Cydia.deb
debs
.DS_Store
*.o
+Images/
diff --git a/makefile b/makefile
index 03dbebc..1bfc33c 100644
--- a/makefile
+++ b/makefile
@@ -82,11 +82,14 @@ object := $(object:.m=.o)
object := $(object:.mm=.o)
object := $(object:%=Objects/%)
+images := $(shell find MobileCydia.app -name '*.png')
+images := $(images:%=Images/%)
+
all: MobileCydia
clean:
rm -f MobileCydia
- rm -rf Objects/
+ rm -rf Objects/ Images/
Objects/%.o: %.c $(header)
@mkdir -p $(dir $@)
@@ -103,6 +106,11 @@ Objects/%.o: %.mm $(header)
@echo "[cycc] $<"
@$(cycc) -c -o $@ $< $(flags) $(xflags)
+Images/%.png: %.png
+ @mkdir -p $(dir $@)
+ @echo "[pngc] $<"
+ @./pngcrush.sh $< $@
+
sysroot:
@echo "Please read compiling.txt: you do not have a ./sysroot/ folder with the on-device requirements." 1>&2
@echo 1>&2
@@ -119,7 +127,7 @@ MobileCydia: sysroot $(object)
CydiaAppliance: CydiaAppliance.mm
$(cycc) $(filter %.mm,$^) $(flags) -bundle $(link) $(backrow)
-package: MobileCydia
+package: MobileCydia $(images)
sudo rm -rf _
mkdir -p _/var/lib/cydia
@@ -134,6 +142,8 @@ package: MobileCydia
cp -a MobileCydia.app _/Applications/Cydia.app
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/Lowtide.app/Appliances
#cp -a Cydia.frappliance _/Applications/Lowtide.app/Appliances
#cp -a CydiaAppliance _/Applications/Lowtide.app/Appliances/Cydia.frappliance
@@ -141,7 +151,6 @@ package: MobileCydia
mkdir -p _/DEBIAN
./control.sh _ >_/DEBIAN/control
- find _ -name '*.png' -exec ./pngcrush.sh '{}' '{}' ';'
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 _