Initial import.

This commit is contained in:
Erik C. Thauvin 2003-04-07 14:02:53 +00:00
commit 1715fc30d3
8 changed files with 57 additions and 0 deletions

18
makeipk.sh Executable file
View file

@ -0,0 +1,18 @@
#!/bin/sh
PACKAGE="zAIM"
VERSION="0.1"
rm -f *.ipk *.gz *.tar
tar -cvf control.tar ./control
gzip control.tar
tar -cvf data.tar ./home
gzip data.tar
tar -cvf ${PACKAGE}.tar ./control.tar.gz ./data.tar.gz
gzip ${PACKAGE}.tar
mv ${PACKAGE}.tar.gz ${PACKAGE}_${VERSION}_arm.ipk
rm -f *.gz *.tar