summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2010-11-25 14:10:23 -0800
committerJay Freeman (saurik) <saurik@saurik.com>2010-11-25 14:55:39 -0800
commit3adcfba70e98d8248f36c69c9c54fa6c11c8683a (patch)
tree3e9dcf8a7578f7cdd54315a0bd6e331c34690eb4 /makefile
parente95a19724bdbf476044620d78068dc09aa28fff2 (diff)
Set Version: in control based on git describe --tags.
Diffstat (limited to 'makefile')
-rw-r--r--makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/makefile b/makefile
index b96733f..5868acc 100644
--- a/makefile
+++ b/makefile
@@ -86,12 +86,15 @@ package: MobileCydia
cp -a CydiaSettings.bundle _/System/Library/PreferenceBundles/CydiaSettings.bundle
mkdir -p _/DEBIAN
- echo "$$(cat control)"$$'\nInstalled-Size: '"$$(du -s _ | cut -f 1)" > _/DEBIAN/control
+ ./control.sh _ >_/DEBIAN/control
sudo chown -R 0 _
sudo chgrp -R 0 _
sudo chmod 6755 _/Applications/Cydia.app/MobileCydia
- $(dpkg) -b _ $(shell grep ^Package: control | cut -d ' ' -f 2-)_$(shell grep ^Version: control | cut -d ' ' -f 2)_iphoneos-arm.deb
+ mkdir -p debs
+ ln -sf debs/cydia_$$(./version.sh)_iphoneos-arm.deb Cydia.deb
+ $(dpkg) -b _ Cydia.deb
+ readlink Cydia.deb
.PHONY: all clean sign