Files
Jesús Daniel Colmenares Oviedo 4108cc08b9 www/tinyauth: New port: Simplest way to protect your apps with a login screen
Tinyauth is a simple authentication middleware that adds a simple
login screen or OAuth with Google, Github and any provider to all
of your docker apps. It supports all the popular proxies like
Traefik, Nginx and Caddy.

Approved by:    acm (mentor)
2025-06-22 17:54:06 -04:00

50 lines
1.3 KiB
Makefile

PORTNAME= tinyauth
DISTVERSIONPREFIX= v
DISTVERSION= 3.4.1
CATEGORIES= www
MASTER_SITES= LOCAL/dtxdf/${PORTNAME}/
DISTFILES= ${PORTNAME}-${DISTVERSION}.frontend${EXTRACT_SUFX}
MAINTAINER= dtxdf@FreeBSD.org
COMMENT= Simplest way to protect your apps with a login screen
WWW= https://tinyauth.app
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= go:1.23,modules
USE_GITHUB= yes
GH_ACCOUNT= steveiliop56
USE_RC_SUBR= ${PORTNAME}
GO_MOD_DIST= github
GO_MODULE= github.com/steveiliop56/${PORTNAME}
GO_BUILDFLAGS= -ldflags "\
-X 'tinyauth/internal/constants.Version=${DISTVERSIONPREFIX}${DISTVERSION}' \
-X 'tinyauth/internal/constants.CommitHash=${GITID}' \
-X 'tinyauth/internal/constants.BuildTimestamp=${BUILD_DATE}'"
SUB_FILES= pkg-message
SUB_LIST= USER=${USERS:[1]}
USERS= ${TINYAUTH_USER}
GROUPS= ${TINYAUTH_GROUP}
PLIST_FILES= bin/${PORTNAME}
# Run 'git checkout ${DISTVERSIONPREFIX}${DISTVERSION} && git rev-parse HEAD'
# in the Tinyauth repository to get the value of GITID.
GITID= 9eb296f14644267410655122e8aff6f0db83371a
BUILD_DATE= $$(date -u '+%Y-%m-%dT%H:%M:%S')
TINYAUTH_USER= ${PORTNAME}
TINYAUTH_GROUP= ${TINYAUTH_USER}
pre-build:
@${MKDIR} ${WRKSRC}/internal/assets/dist
@cd ${WRKDIR}/tinyauth-frontend && ${COPYTREE_SHARE} . ${WRKSRC}/internal/assets/dist
.include <bsd.port.mk>