summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rwxr-xr-xmkipks2
1 files changed, 2 insertions, 0 deletions
diff --git a/mkipks b/mkipks
index 29db5c0..b813e83 100755
--- a/mkipks
+++ b/mkipks
@@ -196,69 +196,71 @@ do
196 echo >>$SPEC "%defattr(-,root,root)" 196 echo >>$SPEC "%defattr(-,root,root)"
197 /bin/ls $RPMFILES >>$SPEC 197 /bin/ls $RPMFILES >>$SPEC
198 rpm -bb --target $ARCH-unknown-linux $SPEC 198 rpm -bb --target $ARCH-unknown-linux $SPEC
199 # rm $SPEC 199 # rm $SPEC
200 elif [ -z "$IMAGEDIR" ] 200 elif [ -z "$IMAGEDIR" ]
201 then 201 then
202 #size=$(du -h -s $DATADIR | sed -e 's/[ ].*//') 202 #size=$(du -h -s $DATADIR | sed -e 's/[ ].*//')
203 if (which mkfs.jffs2 >/dev/null 2>&1); then 203 if (which mkfs.jffs2 >/dev/null 2>&1); then
204 size=$(mkfs.jffs2 -r $DATADIR | wc -c) 204 size=$(mkfs.jffs2 -r $DATADIR | wc -c)
205 fi 205 fi
206 echo "Package: $packagename" >$CTRLDIR/control 206 echo "Package: $packagename" >$CTRLDIR/control
207 if [ ! -z "$size" ]; then 207 if [ ! -z "$size" ]; then
208 echo "Installed-Size: $size" >>$CTRLDIR/control 208 echo "Installed-Size: $size" >>$CTRLDIR/control
209 else 209 else
210 if [ -z "$SIZEWARNED" ] 210 if [ -z "$SIZEWARNED" ]
211 then 211 then
212 echo "Warning, no mkfs.jffs2 found, unable to set Installed-Size." 212 echo "Warning, no mkfs.jffs2 found, unable to set Installed-Size."
213 SIZEWARNED=1 213 SIZEWARNED=1
214 fi 214 fi
215 fi 215 fi
216 echo "Architecture: $ARCH" >>$CTRLDIR/control 216 echo "Architecture: $ARCH" >>$CTRLDIR/control
217 echo "Filename: ./$package.ipk" >>$CTRLDIR/control 217 echo "Filename: ./$package.ipk" >>$CTRLDIR/control
218 echo "Version: $version" >>$CTRLDIR/control 218 echo "Version: $version" >>$CTRLDIR/control
219 [ ! -z "$depends" ] && echo "Depends: $depends" >>$CTRLDIR/control 219 [ ! -z "$depends" ] && echo "Depends: $depends" >>$CTRLDIR/control
220 [ ! -z "$provides" ] && echo "Provides: $provides" >>$CTRLDIR/control 220 [ ! -z "$provides" ] && echo "Provides: $provides" >>$CTRLDIR/control
221 [ ! -z "$conflicts" ] && echo "Conflicts: $conflicts" >>$CTRLDIR/control 221 [ ! -z "$conflicts" ] && echo "Conflicts: $conflicts" >>$CTRLDIR/control
222 egrep -v "^(Files|Version|Depends|Provides|Conflicts|Architecture):" >>$CTRLDIR/control $i 222 egrep -v "^(Files|Version|Depends|Provides|Conflicts|Architecture):" >>$CTRLDIR/control $i
223 [ -n "$CLASSIC" ] && echo "$DEB_VERSION" >$TDIR/debian-binary 223 [ -n "$CLASSIC" ] && echo "$DEB_VERSION" >$TDIR/debian-binary
224 base=${i%.control} 224 base=${i%.control}
225 scripts="preinst postinst prerm postrm" 225 scripts="preinst postinst prerm postrm"
226 for pf in $scripts 226 for pf in $scripts
227 do 227 do
228 if [ -x ${base}.$pf ] 228 if [ -x ${base}.$pf ]
229 then 229 then
230 cp ${base}.$pf $CTRLDIR/$pf 230 cp ${base}.$pf $CTRLDIR/$pf
231 fi 231 fi
232 done 232 done
233 if [ -z "$CLASSIC" ] 233 if [ -z "$CLASSIC" ]
234 then 234 then
235 $OPIEDIR/scripts/ipkg-build -o root -g root $TDIR 235 $OPIEDIR/scripts/ipkg-build -o root -g root $TDIR
236 else 236 else
237 if [ "`id -u`" != "0" ] 237 if [ "`id -u`" != "0" ]
238 then 238 then
239 if [ -z "$ROOTWARNED" ] 239 if [ -z "$ROOTWARNED" ]
240 then 240 then
241 echo Warning. You are not root. Please become root or use fakeroot. 241 echo Warning. You are not root. Please become root or use fakeroot.
242 ROOTWARNED=1 242 ROOTWARNED=1
243 fi 243 fi
244 else
245 chown -R root.root $TDIR/*
244 fi 246 fi
245 ( cd $DATADIR && tar -czf $TDIR/data.tar.gz * ) 247 ( cd $DATADIR && tar -czf $TDIR/data.tar.gz * )
246 ( cd $CTRLDIR && tar -czf $TDIR/control.tar.gz * ) 248 ( cd $CTRLDIR && tar -czf $TDIR/control.tar.gz * )
247 ( cd $TDIR && tar -czf $OPIEDIR/$package.ipk ./control.tar.gz ./data.tar.gz ./debian-binary ) 249 ( cd $TDIR && tar -czf $OPIEDIR/$package.ipk ./control.tar.gz ./data.tar.gz ./debian-binary )
248 fi 250 fi
249 RESULT=$package.ipk 251 RESULT=$package.ipk
250 if [ -n "$VERB" ] 252 if [ -n "$VERB" ]
251 then 253 then
252 echo >&2 "Built $RESULT ($size)" 254 echo >&2 "Built $RESULT ($size)"
253 fi 255 fi
254 if [ -n "$LIST" ] 256 if [ -n "$LIST" ]
255 then 257 then
256 echo $RESULT 258 echo $RESULT
257 fi 259 fi
258 fi 260 fi
259 else 261 else
260 echo >&2 "Not building $package package" 262 echo >&2 "Not building $package package"
261 fi 263 fi
262done 264done
263# clean up 265# clean up
264rm -rf $TDIR 266rm -rf $TDIR