mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
b1cd19f8eb
mbox2imap is a python script to upload local mbox files to remote INBOX folders
32 lines
650 B
Makefile
32 lines
650 B
Makefile
# New ports collection Makefile for: mbox2imap
|
|
# Date created: 25 September 2008
|
|
# Whom: gahr
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mbox2imap
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://people.cs.uchicago.edu/~brendan/scripts/ \
|
|
http://people.freebsd.org/~gahr/distfiles/
|
|
DISTNAME= ${PORTNAME}
|
|
EXTRACT_SUFX= # none
|
|
EXTRACT_ONLY= # none
|
|
|
|
MAINTAINER= gahr@FreeBSD.org
|
|
COMMENT= Upload email stored in mbox file format to an IMAP server
|
|
|
|
USE_PYTHON= yes
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
post-extract:
|
|
${CP} ${DISTDIR}/${PORTNAME} ${WRKDIR}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|