Makefile 795 B

123456789101112131415161718192021222324252627282930313233
  1. # $OpenBSD: Makefile,v 1.24 2017/04/10 11:46:33 sthen Exp $
  2. COMMENT= reminder/task program aimed at developers
  3. DISTNAME= devtodo-0.1.20
  4. REVISION= 1
  5. CATEGORIES= productivity devel
  6. HOMEPAGE= http://swapoff.org/devtodo1.html
  7. MASTER_SITES= http://swapoff.org/files/devtodo/ \
  8. https://spacehopper.org/mirrors/
  9. # GPLv2
  10. PERMIT_PACKAGE_CDROM= Yes
  11. WANTLIB= c m ncurses readline ${LIBCXX}
  12. CONFIGURE_STYLE= gnu
  13. EXAMPLES= doc/scripts.* doc/todorc.example contrib/*
  14. DOCS= README QuickStart
  15. post-install:
  16. ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/devtodo
  17. ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/devtodo
  18. cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} \
  19. ${PREFIX}/share/doc/devtodo
  20. cd ${WRKSRC} && ${INSTALL_DATA} ${EXAMPLES} \
  21. ${PREFIX}/share/examples/devtodo
  22. .include <bsd.port.mk>