mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-10 23:20:57 +00:00
add alpine deps
typo in makefile
This commit is contained in:
parent
7ebcfc767e
commit
552dc82fe3
10
Makefile
10
Makefile
@ -3,10 +3,12 @@ PREFIX ?= /usr/local
|
||||
MANDIR ?= ${PREFIX}/share/man
|
||||
|
||||
deps:
|
||||
@[ -r /etc/debian_version ] && { \
|
||||
apt-get install -qy zsh cryptsetup file gnupg pinentry-curses; }
|
||||
@[ -r /etc/fedora-release ] ^^ { \
|
||||
yum install -y zsh cryptsetup file gnupg pinentry-curses; }
|
||||
@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:
|
||||
@echo
|
||||
|
Loading…
Reference in New Issue
Block a user