aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: cf82d59096319c74e3e9afa7eddebe74c6edc6eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Makefile for mkinitcpio-passwd

VERSION=0.2.0

all:
	@echo "Just run make install..."

.PHONY: install
install:
	install -D -m0644 hook/passwd $(DESTDIR)/usr/lib/initcpio/hooks/passwd
	install -D -m0644 install/passwd $(DESTDIR)/usr/lib/initcpio/install/passwd

release:
	git archive --format=tar.xz --prefix=mkinitcpio-passwd-$(VERSION)/ $(VERSION) > mkinitcpio-passwd-$(VERSION).tar.xz
	gpg -ab mkinitcpio-passwd-$(VERSION).tar.xz
	git notes --ref=refs/notes/signatures/tar add -C $$(git archive --format=tar --prefix=mkinitcpio-passwd-$(VERSION)/ $(VERSION) | gpg --armor --detach-sign | git hash-object -w --stdin) $(VERSION)