blob: 424f12a8c751fa414688a053bf86299e4cbff27b (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)
|