summaryrefslogtreecommitdiff
path: root/games/stegavorto/Makefile
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2008-12-11 10:33:56 +0000
committerwiz <wiz@pkgsrc.org>2008-12-11 10:33:56 +0000
commit38061115d64d38d947f5c26c09ae89dffd64b63f (patch)
tree162a5e77ad5974ee681ea1de5b91aa6e9aa1a0b8 /games/stegavorto/Makefile
parent299b92125a755f18dbc0a9817ac3398c82e97c4b (diff)
downloadpkgsrc-38061115d64d38d947f5c26c09ae89dffd64b63f.tar.gz
Initial import of stegavorto-0.0.2.20081210:
Last tuesday night I had a dream. In this dream, Michael Sweet, frontman of 1980's glam-rock hair-band "Stryper" appeared to me... except he was wearing a business suit... and standing on the front lawn of a public library... and he challenged me to play a game, a strange game that I had never played before. When I awoke I knew that I had to program it... Click on letters to spell out secret words. Your score will be higher if the distance between letters is smaller
Diffstat (limited to 'games/stegavorto/Makefile')
-rw-r--r--games/stegavorto/Makefile34
1 files changed, 34 insertions, 0 deletions
diff --git a/games/stegavorto/Makefile b/games/stegavorto/Makefile
new file mode 100644
index 00000000000..da216e7f0a7
--- /dev/null
+++ b/games/stegavorto/Makefile
@@ -0,0 +1,34 @@
+# $NetBSD: Makefile,v 1.1.1.1 2008/12/11 10:33:56 wiz Exp $
+#
+
+DISTNAME= stegavorto-src
+# version number from setup.py's game_version variable + date
+PKGNAME= stegavorto-0.0.2.20081210
+CATEGORIES= games
+MASTER_SITES= http://hamsterrepublic.com/games/stegavorto/
+EXTRACT_SUFX= .tar.bz2
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= http://james.hamsterrepublic.com/?p=130
+COMMENT= Discover secret messages embedded in the works of great authors
+
+DIST_SUBDIR= ${PKGNAME_NOREV}
+
+USE_LANGUAGES= # none
+
+INSTALLATION_DIRS= bin share/stegavorto/data
+
+do-build:
+ ${ECHO} "#!/bin/sh" > ${WRKSRC}/stegavorto
+ ${ECHO} "cd ${PREFIX}/share/stegavorto && ${PYTHONBIN} stegavorto.py" >> ${WRKSRC}/stegavorto
+
+do-install:
+ ${INSTALL_SCRIPT} ${WRKSRC}/stegavorto ${DESTDIR}${PREFIX}/bin
+ ${INSTALL_SCRIPT} ${WRKSRC}/stegavorto.py \
+ ${DESTDIR}${PREFIX}/share/stegavorto
+ ${INSTALL_DATA} ${WRKSRC}/data/* \
+ ${DESTDIR}${PREFIX}/share/stegavorto/data
+
+.include "../../devel/py-game/buildlink3.mk"
+.include "../../lang/python/extension.mk"
+.include "../../mk/bsd.pkg.mk"