aboutsummaryrefslogtreecommitdiff
path: root/www/authelia/Makefile
blob: fb398c73b4a67939cd257ddda3acff3ac1753e3c (plain) (blame)
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
PORTNAME=	authelia
DISTVERSIONPREFIX=	v
DISTVERSION=	4.38.5
PORTREVISION=	2
CATEGORIES=	www
MASTER_SITES=	https://github.com/authelia/authelia/releases/download/v${DISTVERSION}/:public_html
DISTFILES=	authelia-${DISTVERSIONFULL}-public_html${EXTRACT_SUFX}:public_html # html root directory needs to be built in a special way

MAINTAINER=	yuri@FreeBSD.org
COMMENT=	Single sign-on multi-factor portal for web apps
WWW=		https://www.authelia.com/docs/

LICENSE=	APACHE20
LICENSE_FILE=	${WRKSRC}/LICENSE

USES=		cpe go:1.21,modules

GO_MODULE=	github.com/authelia/authelia/v4
GO_TARGET=	./cmd/${PORTNAME}

USER=		root # 'nobody' doesn't work well because authelia attempts to remove files, etc.
SUB_LIST=	USER=${USER}
SUB_FILES=	pkg-message
USE_RC_SUBR=	${PORTNAME}

post-patch: # extract -public-html
	@${RM} -r ${WRKSRC}/internal/server/public_html
	@${MV} ${WRKDIR}/public_html ${WRKSRC}/internal/server
	@${CP} -r ${WRKSRC}/api ${WRKSRC}/internal/server/public_html/api

post-install: # install the config file
	${INSTALL_DATA} ${WRKSRC}/config.template.yml ${STAGEDIR}${PREFIX}/etc/authelia.yml.sample
	${INSTALL_DATA} ${FILESDIR}/simplified-authelia.yml ${STAGEDIR}${PREFIX}/etc

.include <bsd.port.mk>