mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-20 08:27:15 +00:00
42a8976a05
have gone extinct, including humans. An alien robot series, called Minilens, is cleaning up the Earth and collecting the surviving flora for research purposes. The robots' duty is to destroy all radioactive barrels and to collect all flora. Aliens forgot that Earth has gravity, therefore Minilens can't jump. WWW: http://kobuge-games.github.io/minilens/
49 lines
1.0 KiB
Makefile
49 lines
1.0 KiB
Makefile
# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= minilens
|
|
PORTVERSION= 1.2
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= games
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= Puzzle platformer for gravity-oblivious aliens
|
|
|
|
LICENSE= GPLv3+ CC-BY-SA-4.0
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE_GPLv3+ = ${WRKSRC}/LICENSE.txt
|
|
|
|
RUN_DEPENDS= godot:devel/godot
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= KOBUGE-Games
|
|
|
|
NO_ARCH= yes
|
|
|
|
PORTDOCS= *
|
|
PORTDATA= *
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
DESKTOP_ENTRIES="Minilens" \
|
|
"" \
|
|
"${DATADIR}/icon.png" \
|
|
"${PORTNAME}" \
|
|
"Game;LogicGame;" \
|
|
""
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-build:
|
|
@${ECHO_CMD} "#!/bin/sh" > ${WRKDIR}/${PORTNAME}
|
|
@${ECHO_CMD} "exec \"${LOCALBASE}/bin/godot\" -path \"${DATADIR}\"" >> ${WRKDIR}/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/CREDITS.txt ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}/
|
|
|
|
.include <bsd.port.mk>
|