mirror of
https://git.freebsd.org/ports.git
synced 2025-06-04 04:16:27 -04:00
LittleJet is an open source, easy-to-use orchestrator for managing, deploying, scaling and interconnecting FreeBSD jails anywhere in the world. WWW: https://github.com/DtxdF/LittleJet/ PR: 280242
31 lines
614 B
Makefile
31 lines
614 B
Makefile
PORTNAME= littlejet
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.0.2
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= DtxdF@disroot.org
|
|
COMMENT= Create, deploy, manage and scale FreeBSD jails anywhere
|
|
WWW= https://github.com/DtxdF/LittleJet/
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= jq>=0:textproc/jq \
|
|
cpdup>=0:sysutils/cpdup \
|
|
sansi>=0:textproc/sansi
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= DtxdF
|
|
GH_PROJECT= LittleJet
|
|
|
|
NO_BUILD= yes
|
|
|
|
PORTDOCS= README.md
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}/${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}/${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|