summaryrefslogtreecommitdiff
path: root/mkipks
authorkergoth <kergoth>2002-09-05 15:31:09 (UTC)
committer kergoth <kergoth>2002-09-05 15:31:09 (UTC)
commit45f8f55b7ffde37733a2afd65da9e554a4970c87 (patch) (side-by-side diff)
tree6ed282773d16a92100b21a14aa9d53e1a01a8355 /mkipks
parent3d672fdd23777ab8a17d7579c43453a8ce8a5180 (diff)
downloadopie-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.
Diffstat (limited to 'mkipks') (more/less context) (ignore whitespace changes)
-rwxr-xr-xmkipks30
1 files changed, 28 insertions, 2 deletions
diff --git a/mkipks b/mkipks
index 78498f8..29db5c0 100755
--- a/mkipks
+++ b/mkipks
@@ -57,6 +57,8 @@ do
IMAGEDIR=$1
DATADIR=$IMAGEDIR
mkdir -p $IMAGEDIR
+ ;; -classic)
+ CLASSIC=1
;; -rpm)
if [ "$OPIEDIR" != "/opt/Qtopia" ]
then
@@ -78,6 +80,11 @@ do
shift
done
+if [ -n "$CLASSIC" ]
+then
+ DATADIR=$TDIR/data
+ CTRLDIR=$TDIR/control
+fi
if [ -z "$FILES" ]
then
@@ -200,7 +207,11 @@ do
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
@@ -209,7 +220,7 @@ do
[ ! -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
@@ -219,7 +230,22 @@ do
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