mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
4c081f0dab
PR: ports/77135 Submitted by: KATO Tsuguru <tkato432@yahoo.com>
31 lines
620 B
Makefile
31 lines
620 B
Makefile
# 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
|
|
|
|
USE_REINPLACE= yes
|
|
|
|
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>
|