summaryrefslogtreecommitdiff
path: root/mkipks
authorkergoth <kergoth>2002-02-21 23:41:37 (UTC)
committer kergoth <kergoth>2002-02-21 23:41:37 (UTC)
commita1f885544c3415f3bb89cadb8b17ab080090fe22 (patch) (unidiff)
treea9a13d87005fe0973fac2759a602826ae62e240f /mkipks
parent7fd3f2ce443a136079bb9230b90b31c8d172b16a (diff)
downloadopie-a1f885544c3415f3bb89cadb8b17ab080090fe22.zip
opie-a1f885544c3415f3bb89cadb8b17ab080090fe22.tar.gz
opie-a1f885544c3415f3bb89cadb8b17ab080090fe22.tar.bz2
Altered version_cvs datestamp handling, and added permissions squashing when it runs tar.
Diffstat (limited to 'mkipks') (more/less context) (ignore whitespace changes)
-rwxr-xr-xmkipks9
1 files changed, 6 insertions, 3 deletions
diff --git a/mkipks b/mkipks
index d44f074..2a247ff 100755
--- a/mkipks
+++ b/mkipks
@@ -14,7 +14,8 @@ VERSION_PAT=$(sed -n -e 's/.*QPE_VERSION ".*\..*\.\([0-9]*\).*/\1/p' <$OPIEDIR/i
14SUB_VERSION=$(sed -n -e 's,.*SUB_VERSION \"\(.*\)\".*,\1,p' <$OPIEDIR/include/qpe/version.h) 14SUB_VERSION=$(sed -n -e 's,.*SUB_VERSION \"\(.*\)\".*,\1,p' <$OPIEDIR/include/qpe/version.h)
15if grep -q 'QPE_VERSION .*snapshot' $OPIEDIR/include/qpe/version.h 15if grep -q 'QPE_VERSION .*snapshot' $OPIEDIR/include/qpe/version.h
16then 16then
17 VERSION_CVS="_$(date +%Y%m%d)" 17 VERSION_CVS="$(date +%Y%m%d)"
18 SUB_VERSION=$VERSION_CVS
18else 19else
19 VERSION_CVS="" 20 VERSION_CVS=""
20fi 21fi
@@ -201,9 +202,11 @@ do
201 if [ "$UID" = 0 ] 202 if [ "$UID" = 0 ]
202 then 203 then
203 chown -R root.root $TDIR 204 chown -R root.root $TDIR
205 else
206 echo "Warning: You are not root. Unable to squash permissions."
204 fi 207 fi
205 ( cd $CTRLDIR; tar cfz ../control.tar.gz ./*; ) 208 ( cd $CTRLDIR; tar --owner root --group root cfz ../control.tar.gz ./*; )
206 ( cd $DATADIR; tar cfz ../data.tar.gz ./*; ) 209 ( cd $DATADIR; tar --owner root --group root cfz ../data.tar.gz ./*; )
207 ( cd $TDIR; rm -rf control data; tar cf - ./debian-binary ./control.tar.gz ./data.tar.gz; ) | gzip >$RDIR/$package.ipk 210 ( cd $TDIR; rm -rf control data; tar cf - ./debian-binary ./control.tar.gz ./data.tar.gz; ) | gzip >$RDIR/$package.ipk
208 RESULT=$package.ipk 211 RESULT=$package.ipk
209 if [ -n "$VERB" ] 212 if [ -n "$VERB" ]