c8de4df743
Chroma can also play levels from the game Enigma. It features a "warts and all" reimplementation based on a reverse engineering of the game engine, meaning that, unlike various other conversions, solutions found with Chroma are guaranteed to match those for the original game. From Danil Levai on ports@ with tweaks by me, looks good to jasper@.
31 lines
655 B
Makefile
31 lines
655 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2010/12/10 09:43:34 landry Exp $
|
|
|
|
COMMENT = Enigma levels to the game chroma
|
|
|
|
DISTNAME = chroma-enigma-0.20101210
|
|
|
|
CATEGORIES = games x11
|
|
|
|
HOMEPAGE = http://level7.org.uk/chroma/
|
|
|
|
MAINTAINER = LEVAI Daniel <leva@ecentrum.hu>
|
|
|
|
# Public Domain
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = http://leva.ecentrum.hu/openbsd/
|
|
|
|
RUN_DEPENDS = games/chroma
|
|
|
|
NO_BUILD = Yes
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/chroma/levels/enigma
|
|
${INSTALL_DATA} ${WRKDIST}/levels/enigma/* \
|
|
${PREFIX}/share/chroma/levels/enigma/
|
|
|
|
.include <bsd.port.mk>
|