Tomb/Makefile

38 lines
1.2 KiB
Makefile
Raw Normal View History

PROG = tomb
PREFIX ?= /usr/local
MANDIR ?= ${PREFIX}/share/man
deps:
2024-05-12 23:05:03 +00:00
@if [ -r /etc/debian_version ]; then \
apt-get install -qy zsh cryptsetup file gnupg pinentry-curses; fi
@if [ -r /etc/fedora-release ]; then \
yum install -y zsh cryptsetup file gnupg pinentry-curses; fi
@if [ -r /etc/alpine-release ]; then \
apk add zsh cryptsetup file gpg pinentry-tty e2fsprogs findmnt; fi
all:
2014-02-24 15:09:28 +00:00
@echo
@echo "Tomb is a script and does not need compilation, it can be simply executed."
2014-02-24 15:09:28 +00:00
@echo
@echo "To install it in /usr/local together with its manpage use 'make install'."
2014-02-24 15:09:28 +00:00
@echo
@echo "To run Tomb one needs to have some tools installed on the system:"
2017-11-01 09:43:51 +00:00
@echo "Sudo, cryptsetup, pinentry and gnupg."
2014-02-24 15:09:28 +00:00
@echo
install:
2014-11-15 02:14:42 +00:00
install -Dm755 ${PROG} ${DESTDIR}${PREFIX}/bin/${PROG}
install -Dm644 doc/${PROG}.1 ${DESTDIR}${MANDIR}/man1/${PROG}.1
@echo
@echo "Tomb is installed succesfully. To install language translations, make sure"
@echo "gettext is also installed, then 'cd extras/translations' and 'make install' there."
@echo
@echo "Look around the extras/ directory, it contains other interesting modules."
@echo
test:
make -C extras/test
lint:
2022-03-03 09:27:35 +00:00
shellcheck -s bash -e SC1058,SC1073,SC1072,SC1009 tomb