summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show 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
@@ -5,25 +5,26 @@ DEB_VERSION=2.0
5 5
6# Have to do this here, since CVS can't store symlinks 6# Have to do this here, since CVS can't store symlinks
7mkdir -p etc/rc2.d 7mkdir -p etc/rc2.d
8rm -f etc/rc2.d/S98qpe 8rm -f etc/rc2.d/S98qpe
9ln -s ../init.d/qpe etc/rc2.d/S98qpe 9ln -s ../init.d/qpe etc/rc2.d/S98qpe
10 10
11VERSION_MAJ=$(sed -n -e 's/.*QPE_VERSION "\([0-9]*\)\..*\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h) 11VERSION_MAJ=$(sed -n -e 's/.*QPE_VERSION "\([0-9]*\)\..*\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h)
12VERSION_MIN=$(sed -n -e 's/.*QPE_VERSION ".*\.\([0-9]*\)\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h) 12VERSION_MIN=$(sed -n -e 's/.*QPE_VERSION ".*\.\([0-9]*\)\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h)
13VERSION_PAT=$(sed -n -e 's/.*QPE_VERSION ".*\..*\.\([0-9]*\).*/\1/p' <$OPIEDIR/include/qpe/version.h) 13VERSION_PAT=$(sed -n -e 's/.*QPE_VERSION ".*\..*\.\([0-9]*\).*/\1/p' <$OPIEDIR/include/qpe/version.h)
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
21 22
22QPE_VERSION=$VERSION_MAJ.$VERSION_MIN.$VERSION_PAT 23QPE_VERSION=$VERSION_MAJ.$VERSION_MIN.$VERSION_PAT
23 24
24ARCH=arm 25ARCH=arm
25STRIP=arm-linux-strip 26STRIP=arm-linux-strip
26STRIP_FILES="*Advanced RISC Machines ARM*not stripped" 27STRIP_FILES="*Advanced RISC Machines ARM*not stripped"
27 28
28TDIR=/tmp/ipk$$ 29TDIR=/tmp/ipk$$
29DATADIR=$TDIR/data 30DATADIR=$TDIR/data
@@ -192,27 +193,29 @@ do
192 base=${i%.control} 193 base=${i%.control}
193 scripts="preinst postinst prerm postrm" 194 scripts="preinst postinst prerm postrm"
194 for pf in $scripts 195 for pf in $scripts
195 do 196 do
196 if [ -x ${base}.$pf ] 197 if [ -x ${base}.$pf ]
197 then 198 then
198 cp ${base}.$pf $CTRLDIR/$pf 199 cp ${base}.$pf $CTRLDIR/$pf
199 fi 200 fi
200 done 201 done
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" ]
210 then 213 then
211 echo >&2 "Built $RESULT ($size)" 214 echo >&2 "Built $RESULT ($size)"
212 fi 215 fi
213 if [ -n "$LIST" ] 216 if [ -n "$LIST" ]
214 then 217 then
215 echo $RESULT 218 echo $RESULT
216 fi 219 fi
217 fi 220 fi
218 else 221 else