Updated deps, Makefile, TODO

Done to better reflect and indicate current progress.

Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
This commit is contained in:
Sven-Hendrik Haase 2009-06-08 14:32:06 -07:00 committed by Aaron Griffin
parent 71d8575fae
commit da5452723e
3 changed files with 7 additions and 2 deletions

1
README
View File

@ -17,6 +17,7 @@ First off, Archiso has some dependencies:
- mkinitcpio - mkinitcpio
- cdrkit - cdrkit
- squashfs-tools - squashfs-tools
- aufs2-utils
- mkarchroot from the devtools package - mkarchroot from the devtools package
Archiso itself can be installed with the handy dandy included Makefile, Archiso itself can be installed with the handy dandy included Makefile,
and the incantation 'make install'. and the incantation 'make install'.

2
TODO
View File

@ -7,8 +7,6 @@
* Switch to squashfs-lzma * Switch to squashfs-lzma
* Switch to aufs (less important that lzma)
* Add 'needsupdate' function to check if a squashfs image in the * Add 'needsupdate' function to check if a squashfs image in the
iso dir is up to date, if so, skip it; else rebuild it. No more iso dir is up to date, if so, skip it; else rebuild it. No more
need for the -f flag need for the -f flag

View File

@ -10,9 +10,15 @@ install: all
install -D -m 644 hooks/archiso-early $(DESTDIR)/lib/initcpio/hooks/archiso-early install -D -m 644 hooks/archiso-early $(DESTDIR)/lib/initcpio/hooks/archiso-early
install -D -m 644 install/archiso $(DESTDIR)/lib/initcpio/install/archiso install -D -m 644 install/archiso $(DESTDIR)/lib/initcpio/install/archiso
install -D -m 644 install/archiso-early $(DESTDIR)/lib/initcpio/install/archiso-early install -D -m 644 install/archiso-early $(DESTDIR)/lib/initcpio/install/archiso-early
# install docs and examples
install -d -m 644 $(DESTDIR)/usr/share/archiso/
cp -r ../configs $(DESTDIR)/usr/share/archiso/configs
install -D -m 644 ../README $(DESTDIR)/usr/share/doc/archiso/README
uninstall: uninstall:
rm -f $(DESTDIR)/usr/sbin/mkarchiso rm -f $(DESTDIR)/usr/sbin/mkarchiso
rm -f $(DESTDIR)/usr/bin/testiso rm -f $(DESTDIR)/usr/bin/testiso
rm -f $(DESTDIR)/lib/initcpio/hooks/archiso rm -f $(DESTDIR)/lib/initcpio/hooks/archiso
rm -f $(DESTDIR)/lib/initcpio/install/archiso rm -f $(DESTDIR)/lib/initcpio/install/archiso
rm -rf $(DESTDIR)/usr/share/archiso/
rm -rf $(DESTDIR)/usr/share/doc/archiso/