gmid is a small but featureful gemini server for Unix-like operating systems. Features include support for CGI and FastCGI, reverse proxying capabilities, IRI (RFC3987) support, per-location rules and more. ok sthen@
27 lines
518 B
Makefile
27 lines
518 B
Makefile
COMMENT = simple gemini server
|
|
V = 1.8.3
|
|
DISTNAME = gmid-${V}
|
|
|
|
CATEGORIES = net
|
|
|
|
HOMEPAGE = https://gmid.omarpolo.com/
|
|
|
|
MAINTAINER = Omar Polo <op@openbsd.org>
|
|
|
|
# ISC
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
# uses pledge()
|
|
# uses unveil()
|
|
WANTLIB += c crypto event ssl tls util
|
|
|
|
MASTER_SITES = https://github.com/omar-polo/gmid/releases/download/$V/
|
|
|
|
CONFIGURE_STYLE = simple
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/gmid
|
|
${INSTALL_DATA} ${FILESDIR}/gmid.conf ${PREFIX}/share/examples/gmid
|
|
|
|
.include <bsd.port.mk>
|