mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-22 04:25:12 +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
|
MANDIR ?= ${PREFIX}/share/man
|
||||||
|
|
||||||
deps:
|
deps:
|
||||||
@[ -r /etc/debian_version ] && { \
|
@if [ -r /etc/debian_version ]; then \
|
||||||
apt-get install -qy zsh cryptsetup file gnupg pinentry-curses; }
|
apt-get install -qy zsh cryptsetup file gnupg pinentry-curses; fi
|
||||||
@[ -r /etc/fedora-release ] ^^ { \
|
@if [ -r /etc/fedora-release ]; then \
|
||||||
yum install -y zsh cryptsetup file gnupg pinentry-curses; }
|
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:
|
all:
|
||||||
@echo
|
@echo
|
||||||
|
Loading…
Reference in New Issue
Block a user