diff options
author | adamw <adamw@FreeBSD.org> | 2003-06-06 22:49:57 +0000 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2003-06-06 22:49:57 +0000 |
commit | a76411866a2bf66c2bb2f0bd3382d07797ae2437 (patch) | |
tree | a6406a59dc9915a2e59d630336b11480de19f725 /games/jools/Makefile | |
parent | d3dca876a9f4ec142733bed193a8fe83f5d24534 (diff) | |
download | FreeBSD-ports-a76411866a2bf66c2bb2f0bd3382d07797ae2437.zip FreeBSD-ports-a76411866a2bf66c2bb2f0bd3382d07797ae2437.tar.gz |
Add jools-0.10, a Bejeweled clone.
jools is a clone of that Pop Cap Games game where you swap
adjacent jewels. This game is horribly addictive, and I guess
that makes me the enabler. Or the pusher.
Diffstat (limited to 'games/jools/Makefile')
-rw-r--r-- | games/jools/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/games/jools/Makefile b/games/jools/Makefile new file mode 100644 index 0000000..37ca002 --- /dev/null +++ b/games/jools/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: jools +# Date created: 6 June 2003 +# Whom: Adam Weinberger <adamw@FreeBSD.org> +# +# $FreeBSD$ + +PORTNAME= jools +PORTVERSION= 0.10 +CATEGORIES= games +MASTER_SITES= http://www.eecs.umich.edu/~pelzlpj/jools/ + +MAINTAINER= adamw@FreeBSD.org +COMMENT= Addictive jewel-swapping puzzle game + +RUN_DEPENDS= ${PYTHON_SITELIBDIR}/pygame/__init__.py:${PORTSDIR}/devel/py-game + +USE_PYTHON= yes + +do-build: + ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC} + +do-install: + cd ${WRKSRC} && ${PYTHON_CMD} ${WRKSRC}/setup.py install --prefix=${PREFIX} + +.include <bsd.port.mk> |