summaryrefslogtreecommitdiff
path: root/Makefile
blob: fbde21c22b9e0649a02332872517817552d575a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Copyright 2016 Luke Shumaker
# This work is free. You can redistribute it and/or modify it under the
# terms of the Do What The Fuck You Want To Public License, Version 2,
# as published by Sam Hocevar. See the COPYING file for more details.

topsrcdir = .
topoutdir = .
include $(topsrcdir)/build-aux/Makefile.head.mk

# The core of pristine-etc-keeper
std.sys_files += /etc/etckeeper/pristine/drain
std.sys_files += /etc/etckeeper/pristine/fill
std.sys_files += /var/lib/pristine-etc/chroot.lock
std.sys_files += /var/lib/pristine-etc/spool.lock

$(DESTDIR)/etc/etckeeper/pristine/%: $(srcdir)/%
	install -Dm755 $< $@
$(DESTDIR)/var/lib/pristine-etc/%.lock:
	mkdir -p $(@D)
	touch $@

# Convenience symlinks in bindir
std.sys_files += /usr/bin/pristine-etc-keeper

$(DESTDIR)/usr/bin/pristine-etc-keeper: $(DESTDIR)/etc/etckeeper/pristine/fill
	mkdir -p $(@D)
	ln -srfT $< $@

# pacman integration
std.sys_files += /usr/share/libalpm/hooks/zz-pristine-etc-keeper-post-install.hook

$(DESTDIR)/usr/share/libalpm/hooks/%.hook: %.hook
	install -Dm644 $< $@

# systemd integration
std.sys_files += /usr/lib/systemd/system/pristine-etc-keeper.service

$(DESTDIR)/usr/lib/systemd/system/%: $(srcdir)/%
	install -Dm644 $< $@

# Documentation
std.sys_files += /usr/share/doc/pristine-etc-keeper/README.md

$(DESTDIR)/usr/share/doc/pristine-etc-keeper/%: %
	install -Dm644 $< $@

include $(topsrcdir)/build-aux/Makefile.tail.mk