aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1fedf90..3435c39 100644
--- a/Makefile
+++ b/Makefile
@@ -7,10 +7,13 @@ all:
.PHONY: install
install:
+ # install script and unit file
+ install -D -m0755 systemd/uname $(DESTDIR)/usr/lib/systemd/scripts/uname
+ install -D -m0644 systemd/uname.service $(DESTDIR)/usr/lib/systemd/system/uname.service
+
+ # install install-script and hook for plain old script based initramfs
install -D -m0644 install/uname $(DESTDIR)/usr/lib/initcpio/install/uname
install -D -m0755 hook/uname $(DESTDIR)/usr/lib/initcpio/hooks/uname
- install -D -m0644 systemd/uname.service $(DESTDIR)/usr/lib/systemd/system/uname.service
- install -D -m0755 systemd/uname $(DESTDIR)/usr/lib/systemd/scripts/uname
release:
git archive --format=tar.xz --prefix=mkinitcpio-uname-$(VERSION)/ $(VERSION) > mkinitcpio-uname-$(VERSION).tar.xz