From 87e0b12164168f214afa0954d30b7783577d8868 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Wed, 6 Jun 2018 15:47:57 +0200 Subject: add Makefile --- Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..424f12a --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +# Makefile for mkinitcpio-chkeymap + +VERSION=0.1.0 + +all: + @echo "Just run make install..." + +.PHONY: install +install: + install -D -m0644 hook/chkeymap $(DESTDIR)/usr/lib/initcpio/hooks/chkeymap + install -D -m0644 install/chkeymap $(DESTDIR)/usr/lib/initcpio/install/chkeymap + + install -D -m0644 etc/vconsole.conf $(DESTDIR)/etc/vconsole.conf + install -D -m0644 etc/00-keyboard.conf $(DESTDIR)/etc/X11/xorg.conf.d/00-keyboard.conf + +release: + git archive --format=tar.xz --prefix=mkinitcpio-chkeymap-$(VERSION)/ $(VERSION) > mkinitcpio-chkeymap-$(VERSION).tar.xz + gpg -ab mkinitcpio-chkeymap-$(VERSION).tar.xz + git notes --ref=refs/notes/signatures/tar add -C $$(git archive --format=tar --prefix=mkinitcpio-chkeymap-$(VERSION)/ $(VERSION) | gpg --armor --detach-sign | git hash-object -w --stdin) $(VERSION) -- cgit v1.2.3-54-g00ecf