lumail is a modern console-base e-mail client. It operates exclusively on Maildir hierarchies, there is no support for POP3 or IMAP. luamail has built in Lua scripting support. Its configuration is done in Lua and there are a number of useful primitives you can use to control its behavior and functionality.
43 lines
980 B
Makefile
43 lines
980 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2013/05/31 15:20:21 jturner Exp $
|
|
|
|
COMMENT = console-based e-mail client with Lua scripting support
|
|
|
|
DISTNAME = lumail-0.07
|
|
CATEGORIES = mail
|
|
|
|
MAINTAINER = James Turner <james@calminferno.net>
|
|
|
|
HOMEPAGE = http://lumail.org/
|
|
MASTER_SITES = http://lumail.org/download/
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += c curses ${MODLUA_WANTLIB} m mimetic
|
|
|
|
MODULES = gcc4 lang/lua
|
|
|
|
MODGCC4_ARCHS = *
|
|
MODGCC4_LANGS = c++
|
|
|
|
LIB_DEPENDS += ${MODLUA_LIB_DEPENDS} \
|
|
mail/mimetic
|
|
|
|
USE_GMAKE = Yes
|
|
MAKE_ENV = CXX="c++" \
|
|
CPPFLAGS="-std=gnu++0x -I${LOCALBASE}/include \
|
|
`pkg-config --cflags ${MODLUA_DEP}`" \
|
|
LDLIBS="`pkg-config --libs ${MODLUA_DEP}` -lcurses -lmimetic"
|
|
|
|
NO_TEST = Yes
|
|
|
|
post-extract:
|
|
rm ${WRKSRC}/.depend
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/lumail ${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/lumail
|
|
${INSTALL_DATA} ${WRKSRC}/lumail.lua ${PREFIX}/share/examples/lumail
|
|
|
|
.include <bsd.port.mk>
|