aboutsummaryrefslogtreecommitdiff
path: root/www/authelia/Makefile
blob: 7126411d162d5f550011caacd80c6b62c0e5464d (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
36
37
38
39
40
PORTNAME=	authelia
DISTVERSIONPREFIX=	v
DISTVERSION=	4.37.5
PORTREVISION=	3
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

BROKEN_aarch64=	imports modernc.org/libc/errno: build constraints exclude all Go files
BROKEN_armv6=	imports modernc.org/libc/errno: build constraints exclude all Go files
BROKEN_armv7=	imports modernc.org/libc/errno: build constraints exclude all Go files
BROKEN_i386=	imports modernc.org/libc/errno: build constraints exclude all Go files

USES=		cpe go: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>