Initial import.
This commit is contained in:
commit
1715fc30d3
8 changed files with 57 additions and 0 deletions
18
makeipk.sh
Executable file
18
makeipk.sh
Executable 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
|
Loading…
Add table
Add a link
Reference in a new issue