25 lines
504 B
Makefile
25 lines
504 B
Makefile
# $OpenBSD: Makefile,v 1.11 2019/07/12 20:47:49 sthen Exp $
|
|
|
|
COMMENT= tiny program emulating the detach feature of screen
|
|
DISTNAME= dtach-0.9
|
|
CATEGORIES= misc
|
|
|
|
HOMEPAGE= http://dtach.sourceforge.net/
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
WANTLIB= c util
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dtach/}
|
|
CONFIGURE_STYLE= gnu
|
|
NO_TEST= Yes
|
|
|
|
ALL_TARGET= dtach
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/dtach ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/dtach.1 ${PREFIX}/man/man1/dtach.1
|
|
|
|
.include <bsd.port.mk>
|