summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven-Hendrik Haase <sh@lutzhaase.com>2009-06-08 14:32:06 -0700
committerAaron Griffin <aaronmgriffin@gmail.com>2009-06-08 14:32:06 -0700
commitda5452723edefe816cc82f20f633cee49a979e4b (patch)
tree671acbc2ecdba53fa2d8e3b97b577cfb2d00deaf
parent71d8575faebfbb2a73bad50cd7a22b01dc6bdea8 (diff)
Updated deps, Makefile, TODO
Done to better reflect and indicate current progress. Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-rw-r--r--README1
-rw-r--r--TODO2
-rw-r--r--archiso/Makefile6
3 files changed, 7 insertions, 2 deletions
diff --git a/README b/README
index 774abe7..93efd41 100644
--- a/README
+++ b/README
@@ -17,6 +17,7 @@ First off, Archiso has some dependencies:
- mkinitcpio
- cdrkit
- squashfs-tools
+ - aufs2-utils
- mkarchroot from the devtools package
Archiso itself can be installed with the handy dandy included Makefile,
and the incantation 'make install'.
diff --git a/TODO b/TODO
index 4f8efc3..6848fb0 100644
--- a/TODO
+++ b/TODO
@@ -7,8 +7,6 @@
* Switch to squashfs-lzma
-* Switch to aufs (less important that lzma)
-
* 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
need for the -f flag
diff --git a/archiso/Makefile b/archiso/Makefile
index 6db47e5..3fd7ae3 100644
--- a/archiso/Makefile
+++ b/archiso/Makefile
@@ -10,9 +10,15 @@ install: all
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-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:
rm -f $(DESTDIR)/usr/sbin/mkarchiso
rm -f $(DESTDIR)/usr/bin/testiso
rm -f $(DESTDIR)/lib/initcpio/hooks/archiso
rm -f $(DESTDIR)/lib/initcpio/install/archiso
+ rm -rf $(DESTDIR)/usr/share/archiso/
+ rm -rf $(DESTDIR)/usr/share/doc/archiso/