Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archiso/Makefile
diff options
context:
space:
mode:
authorAaron Griffin <aaronmgriffin@gmail.com>2008-09-06 20:39:35 -0500
committerAaron Griffin <aaronmgriffin@gmail.com>2008-09-06 20:39:35 -0500
commit153550e23b76592e5bbdc1df809dcff196f42765 (patch)
treeaf31a5f30ce8e89bc605ce558ca8adaa7c2c4bb9 /archiso/Makefile
parentfa7257340e8b6b492420814efa520cc14c618275 (diff)
Split mkarchiso and configs into logical parts
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'archiso/Makefile')
-rw-r--r--archiso/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/archiso/Makefile b/archiso/Makefile
new file mode 100644
index 0000000..72abd11
--- /dev/null
+++ b/archiso/Makefile
@@ -0,0 +1,20 @@
+all:
+
+install: all
+ # install to sbin since script only usable by root
+ mkdir -p $(DESTDIR)/usr/sbin
+ install -m 755 mkarchiso $(DESTDIR)/usr/sbin
+ install -m 755 mkusbimg $(DESTDIR)/usr/sbin
+ # testiso can be used by anyone
+ mkdir -p $(DESTDIR)/usr/bin
+ install -m 755 testiso $(DESTDIR)/usr/bin
+ # hooks/install are needed by mkinitcpio
+ mkdir -p $(DESTDIR)/lib/initcpio/{hooks,install}
+ install -m 644 hooks/{archiso,boot-cd,boot-usb} $(DESTDIR)/lib/initcpio/hooks/
+ install -m 644 install/{archiso,boot-cd,boot-usb} $(DESTDIR)/lib/initcpio/install/
+
+uninstall:
+ rm -f $(DESTDIR)/usr/sbin/mkarchiso
+ rm -f $(DESTDIR)/usr/bin/testiso
+ rm -f $(DESTDIR)/lib/initcpio/hooks/{archiso,boot-cd,boot-usb}
+ rm -f $(DESTDIR)/lib/initcpio/install/{archiso,boot-cd,boot-usb}