forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
21 lines
539 B
Makefile
21 lines
539 B
Makefile
# Created by: Lasse L. Johnsen (lasse@freebsdcluster.org)
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sortmail
|
|
PORTVERSION= 1.20
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.freebsdcluster.org/~lasse/software/
|
|
|
|
MAINTAINER= lasse@freebsdcluster.org
|
|
COMMENT= Useful tool for sorting mbox style mailboxes after date
|
|
|
|
NO_WRKSUBDIR= yes
|
|
NO_BUILD= yes
|
|
|
|
do-install:
|
|
.for f in recomposemail decomposemail sortmail
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${f}.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|