blob: cb18add56d4ba6738b3e8cf55f01e86ae647c26b (
plain)
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
29
|
# $NetBSD: Makefile,v 1.3 2003/07/17 21:25:47 grant Exp $
#
DISTNAME= goofey-3.15
CATEGORIES= chat
MASTER_SITES= http://redback.spyda.net/~grant/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= grant@NetBSD.org
HOMEPAGE= http://www.csse.monash.edu.au/~tym/goofey.html
COMMENT= text-based client for goofey, a flexible short message system
NO_CONFIGURE= # defined
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "SunOS"
LDFLAGS+= -lnsl -lsocket
.endif
do-build:
cd ${WRKSRC}; ${CC} ${CFLAGS} ${LDFLAGS} -o goofey goofey.c
do-install:
${INSTALL} ${WRKSRC}/goofey ${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/goofey.1 ${PREFIX}/man/man1
.include "../../mk/bsd.pkg.mk"
|