28 lines
542 B
Makefile
28 lines
542 B
Makefile
# $OpenBSD: Makefile,v 1.2 2019/07/12 20:49:01 sthen Exp $
|
|
|
|
COMMENT = passphrase generator based on Diceware and EFF wordlists
|
|
|
|
DISTNAME = dicepassc-1.0
|
|
|
|
CATEGORIES = security
|
|
|
|
HOMEPAGE = https://www.nul.space/dicepassc/
|
|
|
|
MAINTAINER = Andre Stoebe <as@nul.space>
|
|
|
|
# ISC
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
# uses pledge()
|
|
WANTLIB = c
|
|
|
|
MASTER_SITES = https://www.nul.space/pub/dicepassc/
|
|
|
|
NO_TEST = Yes
|
|
|
|
pre-configure:
|
|
sed -i -e "s,/usr/local,${PREFIX},g;" \
|
|
${WRKSRC}/Makefile ${WRKSRC}/dicepassc.c ${WRKSRC}/dicepassc.1
|
|
|
|
.include <bsd.port.mk>
|