summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2010-10-04 03:02:26 -0700
committerJay Freeman (saurik) <saurik@saurik.com>2010-10-04 03:02:26 -0700
commit7e2bd591297679ef77fcfe6c380b3fca5aaf71f5 (patch)
treeb337bd6155ff58a2f59a51a4110b81d26367c4e4
parentc21004b921c67b3e7748cc1f0c53d02deec1ebca (diff)
Fix permissions in dpkg-deb and add du back to package.
-rw-r--r--makefile10
-rwxr-xr-xsysroot.sh2
2 files changed, 7 insertions, 5 deletions
diff --git a/makefile b/makefile
index ddb9024..dcd482a 100644
--- a/makefile
+++ b/makefile
@@ -40,13 +40,12 @@ Cydia: Cydia.mm Reachability.mm UICaboodle/*.mm
cycc -r4.2 -i$(ios) -o$@ -- $(filter %.mm,$^) $(flags) $(link)
package: Cydia
- rm -rf _
+ sudo 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
+ cp -a sysroot/usr/bin/du _/usr/libexec/cydia
mkdir -p _/System/Library
cp -a LaunchDaemons _/System/Library/LaunchDaemons
@@ -54,7 +53,6 @@ package: Cydia
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
@@ -62,6 +60,10 @@ package: Cydia
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 sign
diff --git a/sysroot.sh b/sysroot.sh
index db06c10..819d8b7 100755
--- a/sysroot.sh
+++ b/sysroot.sh
@@ -26,7 +26,7 @@ wget -qO- "${repository}dists/${distribution}/${component}/binary-${architecture
while IFS= read -r line; do
if [[ ${line} == '' ]]; then
package=${fields[package]}
- if [[ ${package} == *(apr|apr-lib|apt7|apt7-lib|mobilesubstrate|pcre) ]]; then
+ if [[ ${package} == *(apr|apr-lib|apt7|apt7-lib|coreutils|mobilesubstrate|pcre) ]]; then
filename=${fields[filename]}
wget -O "${package}.deb" "${repository}${filename}"
dpkg-deb -x "${package}.deb" .