mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
65b7002e39
- Update to 0.6.0 PR: 245256 Sumbitted by: Nuno Teixeira Approved by: maintainer
31 lines
705 B
Makefile
31 lines
705 B
Makefile
# Created by: Ilya A. Arkhipov <rum1cro@yandex.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= opengfx
|
|
PORTVERSION= 0.6.0
|
|
CATEGORIES= games
|
|
MASTER_SITES= https://cdn.openttd.org/${PORTNAME}-releases/${PORTVERSION}/
|
|
DISTFILES= ${PORTNAME}-${PORTVERSION}-all.zip
|
|
|
|
MAINTAINER= rum1cro@yandex.ru
|
|
COMMENT= Free alternative graphics for OpenTTD game engine
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/license.txt
|
|
|
|
USES= zip
|
|
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
DATADIR= ${PREFIX}/share/openttd/baseset/opengfx
|
|
|
|
# upstream zipped a tar file, unpack it.
|
|
post-extract:
|
|
@cd ${WRKDIR} && tar -xf ${PORTNAME}-${PORTVERSION}.tar
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/* ${STAGEDIR}${DATADIR}
|
|
|
|
.include <bsd.port.mk>
|