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 /mkipks | |
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
@@ -58,4 +58,6 @@ do DATADIR=$IMAGEDIR mkdir -p $IMAGEDIR + ;; -classic) + CLASSIC=1 ;; -rpm) if [ "$OPIEDIR" != "/opt/Qtopia" ] @@ -79,4 +81,9 @@ do done +if [ -n "$CLASSIC" ] +then + DATADIR=$TDIR/data + CTRLDIR=$TDIR/control +fi if [ -z "$FILES" ] @@ -201,5 +208,9 @@ do 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 @@ -210,5 +221,5 @@ do [ ! -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" @@ -220,5 +231,20 @@ do 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" ] |