mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-17 08:01:36 +00:00
6b99a51563
Approved by: Oscar Bonilla <obonilla@galileo.edu> (maintainer)
23 lines
606 B
Makefile
23 lines
606 B
Makefile
# Created by: Oscar Bonilla <obonilla@fisicc-ufm.edu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= unix2dos
|
|
PORTVERSION= 1.3
|
|
CATEGORIES= converters
|
|
MASTER_SITES= CRITICAL
|
|
|
|
MAINTAINER= obonilla@galileo.edu
|
|
COMMENT= Convert ASCII newlines between CR/LF and LF
|
|
|
|
MAN1= unix2dos.1 dos2unix.1
|
|
PLIST_FILES= bin/dos2unix bin/unix2dos
|
|
NO_WRKSUBDIR= yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKDIR}/unix2dos ${PREFIX}/bin/unix2dos
|
|
${LN} -f ${PREFIX}/bin/unix2dos ${PREFIX}/bin/dos2unix
|
|
${INSTALL_MAN} ${WRKDIR}/man1/unix2dos.1 ${MANPREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKDIR}/man1/dos2unix.1 ${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|