pkgsrc/converters/base64/Makefile
adam 4b2a26a963 Changes 1.5:
When encoding with FORCE_BINARY_IO mode in effect, the explicit "\r\n"
end of line sequence caused double carriage returns in the output,
because the output text file is subject to expansion of LF to CR/LF
line terminators.  I made the "eol" sequence conditional on
FORCE_BINARY, so that just a line feed is written to streams
which will expand it.
2007-12-16 16:14:32 +00:00

22 lines
554 B
Makefile

# $NetBSD: Makefile,v 1.20 2007/12/16 16:14:32 adam Exp $
DISTNAME= base64-1.5
CATEGORIES= converters
MASTER_SITES= http://www.fourmilab.ch/webtools/base64/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.fourmilab.ch/webtools/base64/
COMMENT= Encode and decode base64 files
PKG_INSTALLATION_TYPES= overwrite pkgviews
GNU_CONFIGURE= yes
BUILD_TARGET= prog
INSTALLATION_DIRS= bin
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/base64 ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/base64.1 ${PREFIX}/${PKGMANDIR}/man1
.include "../../mk/bsd.pkg.mk"