1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-11 02:50:24 +00:00
freebsd-ports/converters/unix2dos/Makefile
Mathieu Arnold 065c026fe5 Fix ports that confused the meaning of WRKDIR and WRKSRC.
PR:		204056
Submitted by:	mat
Reviewed by:	bapt
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D2735
2015-11-05 12:36:25 +00:00

23 lines
686 B
Makefile

# Created by: Oscar Bonilla <obonilla@fisicc-ufm.edu>
# $FreeBSD$
PORTNAME= unix2dos
PORTVERSION= 1.3
CATEGORIES= converters
MASTER_SITES= LOCAL/ehaupt
MAINTAINER= obonilla@galileo.edu
COMMENT= Convert ASCII newlines between CR/LF and LF
PLIST_FILES= bin/dos2unix bin/unix2dos \
man/man1/unix2dos.1.gz man/man1/dos2unix.1.gz
NO_WRKSUBDIR= yes
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/unix2dos ${STAGEDIR}${PREFIX}/bin/unix2dos
${LN} -f ${STAGEDIR}${PREFIX}/bin/unix2dos ${STAGEDIR}${PREFIX}/bin/dos2unix
${INSTALL_MAN} ${WRKSRC}/man1/unix2dos.1 ${STAGEDIR}${MANPREFIX}/man/man1
${INSTALL_MAN} ${WRKSRC}/man1/dos2unix.1 ${STAGEDIR}${MANPREFIX}/man/man1
.include <bsd.port.mk>