openbsd-ports/misc/tpp/Makefile
kili c1f7b0d18c tpp stands for text presentation program and is an ncurses-based
presentation tool. The presentation can be written with your favorite
editor in a simple description format and then shown on any text
terminal that is supported by ncurses - ranging from an old VT100
to the Linux framebuffer to an xterm.

ok william@
2010-05-18 20:43:32 +00:00

39 lines
1.1 KiB
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2010/05/18 20:43:32 kili Exp $
COMMENT = text presentation program
DISTNAME = tpp-1.3.1
CATEGORIES = misc productivity
HOMEPAGE = http://synflood.at/tpp.html
# GPLv2
PERMIT_PACKAGE_CDROM = Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM =Yes
PERMIT_DISTFILES_FTP = Yes
MASTER_SITES = http://synflood.at/tpp/
MODULES = lang/ruby
RUN_DEPENDS = ::devel/ruby-ncurses \
::misc/figlet
NO_BUILD = Yes
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/tpp
cd ${WRKSRC} && \
${INSTALL_DATA} DESIGN CHANGES COPYING README THANKS ${PREFIX}/share/doc/tpp
${INSTALL_MAN_DIR} ${PREFIX}/man/man1
${INSTALL_MAN} ${WRKSRC}/doc/tpp.1 ${PREFIX}/man/man1
${INSTALL_SCRIPT} ${WRKSRC}/tpp.rb ${PREFIX}/bin/tpp
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/tpp
${INSTALL_DATA} ${WRKSRC}/examples/* ${PREFIX}/share/examples/tpp
${INSTALL_DATA_DIR} ${PREFIX}/share/emacs/site-lisp
${INSTALL_DATA} ${WRKSRC}/contrib/tpp-mode.el ${PREFIX}/share/emacs/site-lisp
${INSTALL_DATA} ${WRKSRC}/contrib/tpp.vim ${PREFIX}/share/doc/tpp
.include <bsd.port.mk>