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
@@ -59,2 +59,4 @@ do mkdir -p $IMAGEDIR + ;; -classic) + CLASSIC=1 ;; -rpm) @@ -80,2 +82,7 @@ done +if [ -n "$CLASSIC" ] +then + DATADIR=$TDIR/data + CTRLDIR=$TDIR/control +fi @@ -202,3 +209,7 @@ do else + if [ -z "$SIZEWARNED" ] + then echo "Warning, no mkfs.jffs2 found, unable to set Installed-Size." + SIZEWARNED=1 + fi fi @@ -211,3 +222,3 @@ do 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} @@ -221,3 +232,18 @@ do 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 |