author | kergoth <kergoth> | 2003-04-24 17:10:10 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-04-24 17:10:10 (UTC) |
commit | 786111b4ee9a950519d2ec36fabf0eb53c03770d (patch) (side-by-side diff) | |
tree | de055f5c4a5121490d0e2bb81c51ddaaf114b672 /mkipks | |
parent | 9bedd27d07bcd1d9f2737f023e917f27499ba4b8 (diff) | |
download | opie-786111b4ee9a950519d2ec36fabf0eb53c03770d.zip opie-786111b4ee9a950519d2ec36fabf0eb53c03770d.tar.gz opie-786111b4ee9a950519d2ec36fabf0eb53c03770d.tar.bz2 |
Make mkipks check for existing Package field more explicit
-rwxr-xr-x | mkipks | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -184,65 +184,65 @@ do else echo >&2 "$0: $i: No such file: $ff" ERROR=1 fi done done fi if [ -z "$ERROR" ] then if [ -n "$RPM" ] then SPEC=/tmp/mkipks-rpm-$$.spec echo >$SPEC "Summary: $summary" echo >>$SPEC "Name: $packagename" echo >>$SPEC "Group: $section" ########## echo >>$SPEC "License: $license" echo >>$SPEC "Version: ${version%-*}" echo >>$SPEC "Release: ${version#*-}" echo >>$SPEC "%description" sed -n -e '/^Description:/,$ p' $i | tail +2 >>$SPEC echo >>$SPEC "%files" echo >>$SPEC "%defattr(-,root,root)" /bin/ls $RPMFILES >>$SPEC rpm -bb --target $ARCH-unknown-linux $SPEC # rm $SPEC elif [ -z "$IMAGEDIR" ] then #size=$(du -h -s $DATADIR | sed -e 's/[ ].*//') if (which mkfs.jffs2 >/dev/null 2>&1); then size=$(mkfs.jffs2 -r $DATADIR | wc -c) fi - if ! (cat $i|grep -q ^Package); then + if ! (cat $i|grep -q ^Package:); then echo "Package: $packagename" >$CTRLDIR/control fi if [ ! -z "$size" ]; then echo "Installed-Size: $size" >>$CTRLDIR/control else if [ -z "$SIZEWARNED" ] then echo "Warning, no mkfs.jffs2 found, unable to set Installed-Size." SIZEWARNED=1 fi fi echo "Architecture: $ARCH" >>$CTRLDIR/control echo "Version: $version" >>$CTRLDIR/control [ ! -z "$depends" ] && echo "Depends: $depends" >>$CTRLDIR/control [ ! -z "$provides" ] && echo "Provides: $provides" >>$CTRLDIR/control [ ! -z "$conflicts" ] && echo "Conflicts: $conflicts" >>$CTRLDIR/control egrep -v "^(Files|Version|Depends|Provides|Conflicts|Architecture):" >>$CTRLDIR/control $i [ -n "$classicopts" ] && echo "$DEB_VERSION" >$TDIR/debian-binary base=${i%.control} scripts="preinst postinst prerm postrm" for pf in $scripts do if [ -e ${base}.$pf ] then cp ${base}.$pf $CTRLDIR/$pf chmod 755 $CTRLDIR/$pf fi done cd $ORIGDIR; $OPIEDIR/scripts/ipkg-build $classicopts -o root -g root $TDIR; cd $OPIEDIR; RESULT=$package.ipk if [ -n "$VERB" ] then |