Makefile 899 B

1234567891011121314151617181920212223242526272829303132333435
  1. # Ports collection makefile for "hoc", the High Order Calculator
  2. # $OpenBSD: Makefile,v 1.28 2015/01/22 18:41:16 naddy Exp $
  3. COMMENT= from Kernighan & Pike: High Order Calculator
  4. DISTNAME= hoc
  5. PKGNAME= hoc-1.1
  6. REVISION= 0
  7. CATEGORIES= math
  8. MASTER_SITES= http://cm.bell-labs.com/cm/cs/who/bwk/
  9. EXTRACT_SUFX= .sh
  10. EXTRACT_CASES= *.sh) /bin/sh ${FULLDISTDIR}/$$archive;;
  11. MAINTAINER= Ian Darwin <ian@openbsd.org>
  12. HOMEPAGE= http://cm.bell-labs.com/cm/cs/who/bwk/
  13. # License is included in the distfile: "Permission to use, copy,
  14. # modify, and distribute this software... for any purpose and without
  15. # fee.. provided that the copyright notice appear in all copies..."
  16. PERMIT_PACKAGE_CDROM= Yes
  17. WANTLIB= c m
  18. ALL_TARGET= hoc
  19. MAKE_FILE= makefile
  20. WRKDIST= ${WRKDIR}
  21. do-install:
  22. ${INSTALL_PROGRAM} ${WRKSRC}/hoc ${PREFIX}/bin
  23. ${INSTALL_MAN} ${WRKSRC}/hoc.1 ${PREFIX}/man/man1
  24. .include <bsd.port.mk>