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