Makefile 511 B

12345678910111213141516171819202122232425
  1. # $OpenBSD: Makefile,v 1.10 2016/08/17 14:02:48 jasper Exp $
  2. COMMENT= tiny program emulating the detach feature of screen
  3. DISTNAME= dtach-0.9
  4. CATEGORIES= misc
  5. HOMEPAGE= http://dtach.sourceforge.net/
  6. # GPL
  7. PERMIT_PACKAGE_CDROM= Yes
  8. WANTLIB= c util
  9. MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dtach/}
  10. CONFIGURE_STYLE= gnu
  11. NO_TEST= Yes
  12. ALL_TARGET= dtach
  13. do-install:
  14. ${INSTALL_PROGRAM} ${WRKSRC}/dtach ${PREFIX}/bin
  15. ${INSTALL_MAN} ${WRKSRC}/dtach.1 ${PREFIX}/man/man1/dtach.1
  16. .include <bsd.port.mk>