summaryrefslogtreecommitdiff
path: root/games/eights/Makefile
diff options
context:
space:
mode:
authorChris D. Faulhaber <jedgar@FreeBSD.org>2002-02-22 02:59:32 +0000
committerChris D. Faulhaber <jedgar@FreeBSD.org>2002-02-22 02:59:32 +0000
commit6d079cec052286ff8e8a3b062ccacde8464ea167 (patch)
tree9160d5dd53dbaaa8f96c7b420970f5be10856852 /games/eights/Makefile
parent- Update to 3.1.0. (diff)
Add eights, a simple text-based games of eights
(and my brother's first port :) Submitted by: Bob Bomar <bob@fly.homeunix.org>
Notes
Notes: svn path=/head/; revision=55066
Diffstat (limited to '')
-rw-r--r--games/eights/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/games/eights/Makefile b/games/eights/Makefile
new file mode 100644
index 000000000000..b35bc7d6b7df
--- /dev/null
+++ b/games/eights/Makefile
@@ -0,0 +1,24 @@
+# New ports collection makefile for: eights
+# Date created: 21 Febuary 2002
+# Whom: Bob Bomar <bob@fly.homeunix.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= eights
+PORTVERSION= 1.0
+CATEGORIES= games
+MASTER_SITES= http://dxkelly.freeshell.org/
+DISTNAME= ${PORTNAME}
+
+MAINTAINER= bob@fly.homeunix.org
+
+WRKSRC= ${WRKDIR}/${PORTNAME}
+
+do-build:
+ @cd ${WRKSRC} && ${CC} ${CFLAGS} ${PORTNAME}.c -o ${PORTNAME}
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
+
+.include <bsd.port.mk>