02649afb5a
-- Wyrd is a text-based front-end to Remind, a sophisticated calendar and alarm program. Remind's power lies in its programmability, and Wyrd does not hide this capability behind flashy GUI dialogs. Rather, Wyrd is designed to make you more efficient at editing your reminder files directly. It also offers a nice day view suitable for visualizing your schedule at a glance.
31 lines
708 B
Makefile
31 lines
708 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2005/06/29 21:57:28 avsm Exp $
|
|
|
|
COMMENT= "curses calendar front-end to remind"
|
|
|
|
VERSION= 1.0.0
|
|
DISTNAME= wyrd-${VERSION}
|
|
CATEGORIES= productivity
|
|
|
|
HOMEPAGE= http://www.eecs.umich.edu/~pelzlpj/wyrd/
|
|
MASTER_SITES= http://www.eecs.umich.edu/~pelzlpj/wyrd/
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c m ncurses
|
|
|
|
MODULES= lang/ocaml
|
|
CONFIGURE_STYLE= gnu
|
|
USE_GMAKE= Yes
|
|
EXAMPLE_DIR= ${PREFIX}/share/examples/wyrd
|
|
BUILD_DEPENDS= ::misc/remind
|
|
RUN_DEPENDS= ::misc/remind
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${EXAMPLE_DIR}
|
|
${INSTALL_DATA} ${WRKSRC}/wyrdrc ${EXAMPLE_DIR}
|
|
|
|
.include <bsd.port.mk>
|