committing ipk sources

This commit is contained in:
Conor Horan-Kates
2016-11-23 15:42:51 -08:00
parent 38465f7280
commit b94553c2d8
624 changed files with 3 additions and 3 deletions

View File

@ -0,0 +1,21 @@
all: clean busybox.ipk
busybox.ipk:
rm -rf ipk
mkdir -p ipk/opt/myipk
#mkdir -p ipk/
cp -r source/* ipk/
# sanity
echo 'bar' >> ipk/opt/myipk/foo
tar czvf control.tar.gz control
cd ipk; tar czvf ../data.tar.gz .; cd ..
echo 2.0 > debian-binary
ar r busybox.ipk control.tar.gz data.tar.gz debian-binary
clean: FORCE
rm -rf ipk
rm -f control.tar.gz
rm -f data.tar.gz
rm -f busybox.ipk
FORCE: