bc85248187
from DESCR: safecat is a program which implements D. J. Bernstein's maildir algorithm to copy stdin safely to a file in a speci- fied directory. With safecat, the user is offered two assur- ances. First, if safecat returns a successful exit status, then all data is guaranteed to be saved in the destination directory. Second, if a file exists in the destination directory, placed there by safecat, then the file is guaran- teed to be complete.
27 lines
734 B
Makefile
27 lines
734 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2001/03/04 17:37:02 danh Exp $
|
|
|
|
DISTNAME= safecat-1.4
|
|
CATEGORIES= sysutils
|
|
NEED_VERSION= 1.358
|
|
MASTER_SITES= http://www.nb.net/~lbudney/linux/software/safecat/ \
|
|
http://sunsite.unc.edu/pub/Linux/utils/file/
|
|
|
|
HOMEPAGE= http://www.nb.net/~lbudney/linux/software/safecat.html
|
|
|
|
MAINTAINER= Dan Harnett <danh@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
ALL_TARGET=
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/safecat ${PREFIX}/bin/safecat
|
|
${INSTALL_SCRIPT} ${WRKSRC}/maildir ${PREFIX}/bin/maildir
|
|
${INSTALL_MAN} ${WRKSRC}/safecat.1 ${PREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/maildir.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|