svn commit: r455743 - in head/games: . minilens
Dmitry Marakasov
amdmi3 at FreeBSD.org
Thu Dec 7 17:17:46 UTC 2017
Author: amdmi3
Date: Thu Dec 7 17:17:44 2017
New Revision: 455743
URL: https://svnweb.freebsd.org/changeset/ports/455743
Log:
A thousand years into post-apocalyptic Earth, many forms of life
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/
Added:
head/games/minilens/
head/games/minilens/Makefile (contents, props changed)
head/games/minilens/distinfo (contents, props changed)
head/games/minilens/pkg-descr (contents, props changed)
Modified:
head/games/Makefile
Modified: head/games/Makefile
==============================================================================
--- head/games/Makefile Thu Dec 7 17:13:48 2017 (r455742)
+++ head/games/Makefile Thu Dec 7 17:17:44 2017 (r455743)
@@ -609,6 +609,7 @@
SUBDIR += minerbold
SUBDIR += minetest
SUBDIR += minetest_game
+ SUBDIR += minilens
SUBDIR += mirrormagic
SUBDIR += miscom
SUBDIR += mkgichessclub
Added: head/games/minilens/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/games/minilens/Makefile Thu Dec 7 17:17:44 2017 (r455743)
@@ -0,0 +1,48 @@
+# Created by: Dmitry Marakasov <amdmi3 at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= minilens
+PORTVERSION= 1.2
+DISTVERSIONPREFIX= v
+CATEGORIES= games
+
+MAINTAINER= amdmi3 at 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>
Added: head/games/minilens/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/games/minilens/distinfo Thu Dec 7 17:17:44 2017 (r455743)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1512571648
+SHA256 (KOBUGE-Games-minilens-v1.2_GH0.tar.gz) = 145a81cc5d4ac4739ac5be4aee1a0c5a5663e8cff3255b0f6c2dcb8c96bcffbb
+SIZE (KOBUGE-Games-minilens-v1.2_GH0.tar.gz) = 9055748
Added: head/games/minilens/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/games/minilens/pkg-descr Thu Dec 7 17:17:44 2017 (r455743)
@@ -0,0 +1,11 @@
+A thousand years into post-apocalyptic Earth, many forms of life
+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/
More information about the svn-ports-head
mailing list