Makefile 781 B

12345678910111213141516171819202122232425262728293031
  1. # $OpenBSD: Makefile,v 1.12 2017/02/16 12:35:39 fcambus Exp $
  2. COMMENT = weather in terminal, with ANSI colors and Unicode symbols
  3. GH_ACCOUNT = fcambus
  4. GH_PROJECT = ansiweather
  5. GH_TAGNAME = 1.10
  6. CATEGORIES = astro
  7. MAINTAINER = Frederic Cambus <fcambus@openbsd.org>
  8. # BSD
  9. PERMIT_PACKAGE_CDROM = Yes
  10. RUN_DEPENDS = textproc/jq
  11. NO_BUILD = Yes
  12. NO_TEST = Yes
  13. do-install:
  14. ${INSTALL_SCRIPT} ${WRKSRC}/ansiweather ${PREFIX}/bin
  15. ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ansiweather
  16. ${INSTALL_DATA} ${WRKSRC}/README.md ${PREFIX}/share/doc/ansiweather
  17. ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/ansiweather
  18. ${INSTALL_DATA} ${WRKSRC}/ansiweatherrc.example \
  19. ${PREFIX}/share/examples/ansiweather
  20. ${INSTALL_DATA} ${WRKSRC}/ansiweather.1 ${PREFIX}/man/man1
  21. .include <bsd.port.mk>