-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathMakefile
51 lines (42 loc) · 1.02 KB
/
Makefile
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
48
49
50
51
PREFIX ?= /usr/local
VERSION ?= $(shell ./idoit-install --version)
deb :
fpm -s dir -t deb \
--name idoit-scripts \
--version $(VERSION) \
--architecture all \
--license AGPLv3+ \
--maintainer "Benjamin Heisig <[email protected]>" \
--vendor "synetics GmbH <[email protected]>" \
--description "Useful scripts to maintain i-doit" \
--url "https://github.com/i-doit/scripts" \
--deb-no-default-config-files \
--deb-changelog CHANGELOG.md \
--no-depends \
--deb-priority optional \
i-doit.sh=/etc/i-doit/ \
idoit=/usr/bin/ \
idoit-backup=/usr/bin \
idoit-hotfix=/usr/bin \
idoit-install=/usr/bin \
idoit-jobs=/usr/bin \
idoit-pwd=/usr/bin \
idoit-restore=/usr/bin \
idoit-support=/usr/bin
lintian :
lintian *.deb
lint-markdown :
npm run test:markdown
lint-shell :
npm run test:shell
lint-yaml :
npm run test:yaml
install :
install idoit* $(PREFIX)/bin/
mkdir -p /etc/i-doit
install i-doit.sh /etc/i-doit
uninstall :
rm -f $(PREFIX)/bin/idoit*
rm -rf /etc/i-doit/
clean :
rm -f *.deb