author | kergoth <kergoth> | 2002-09-05 15:31:09 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-09-05 15:31:09 (UTC) |
commit | 45f8f55b7ffde37733a2afd65da9e554a4970c87 (patch) (side-by-side diff) | |
tree | 6ed282773d16a92100b21a14aa9d53e1a01a8355 | |
parent | 3d672fdd23777ab8a17d7579c43453a8ce8a5180 (diff) | |
download | opie-45f8f55b7ffde37733a2afd65da9e554a4970c87.zip opie-45f8f55b7ffde37733a2afd65da9e554a4970c87.tar.gz opie-45f8f55b7ffde37733a2afd65da9e554a4970c87.tar.bz2 |
Added -classic flag to create old style ipks. Note: this script is and has always been a ugly hack. Should rewrite it one of these days.
-rwxr-xr-x | mkipks | 30 |
1 files changed, 28 insertions, 2 deletions
@@ -52,16 +52,18 @@ do echo >&2 "Packaging for version $VERSION_MAJ.$VERSION_MIN.$VERSION_PAT$VERSION_CVS" ;; -l) LIST=1 ;; -i) shift IMAGEDIR=$1 DATADIR=$IMAGEDIR mkdir -p $IMAGEDIR + ;; -classic) + CLASSIC=1 ;; -rpm) if [ "$OPIEDIR" != "/opt/Qtopia" ] then echo >&2 '$OPIEDIR is not the standard /usr/Qtopia directory.' sleep 1 #exit 1 fi RPM=1 @@ -73,16 +75,21 @@ do ;; /*) FILES="$FILES $1" ;; *) FILES="$FILES $PWD/$1" esac shift done +if [ -n "$CLASSIC" ] +then + DATADIR=$TDIR/data + CTRLDIR=$TDIR/control +fi if [ -z "$FILES" ] then FILES=`find $OPIEDIR -name "*.control" -print` fi RDIR=$PWD cd $OPIEDIR @@ -195,36 +202,55 @@ do #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 echo "Package: $packagename" >$CTRLDIR/control 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 "Filename: ./$package.ipk" >>$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 -# echo "$DEB_VERSION" >$TDIR/debian-binary + [ -n "$CLASSIC" ] && echo "$DEB_VERSION" >$TDIR/debian-binary base=${i%.control} scripts="preinst postinst prerm postrm" for pf in $scripts do if [ -x ${base}.$pf ] then cp ${base}.$pf $CTRLDIR/$pf fi done - $OPIEDIR/scripts/ipkg-build -o root -g root $TDIR + if [ -z "$CLASSIC" ] + then + $OPIEDIR/scripts/ipkg-build -o root -g root $TDIR + else + if [ "`id -u`" != "0" ] + then + if [ -z "$ROOTWARNED" ] + then + echo Warning. You are not root. Please become root or use fakeroot. + ROOTWARNED=1 + fi + fi + ( cd $DATADIR && tar -czf $TDIR/data.tar.gz * ) + ( cd $CTRLDIR && tar -czf $TDIR/control.tar.gz * ) + ( cd $TDIR && tar -czf $OPIEDIR/$package.ipk ./control.tar.gz ./data.tar.gz ./debian-binary ) + fi RESULT=$package.ipk if [ -n "$VERB" ] then echo >&2 "Built $RESULT ($size)" fi if [ -n "$LIST" ] then echo $RESULT |