blob: de0d433ddae6e701e8cb81d05e58fb7bc078df22 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# ex:ts=8
# New ports collection makefile for: cryptoslam
# Date created: Nov 25, 2001
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= cryptoslam
PORTVERSION= 1.2
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= A curses-based tool for creating and solving the cryptograms
PLIST_FILES= bin/cryptoslam
do-build:
cd ${WRKSRC} && ${CXX} ${CXXFLAGS} cryptogram.cpp cryptoslam.cpp \
-o ${PORTNAME} -lcurses
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
.include <bsd.port.mk>
|