a16fc84f19
WRKSRC= ${WRKDIR} This is much cleaner, much more indicative of what happens, and removes another of the negative definitions (NO_.* = value).
21 lines
708 B
Makefile
21 lines
708 B
Makefile
# $NetBSD: Makefile,v 1.8 2001/09/09 20:36:17 agc Exp $
|
|
# FreeBSD Id: ports/converters/unix2dos/Makefile,v 1.5 2000/07/04 10:31:42 sobomax Exp
|
|
|
|
DISTNAME= unix2dos-1.2
|
|
CATEGORIES= converters
|
|
MASTER_SITES= http://www.fisicc-ufm.edu/~obonilla/files/ \
|
|
ftp://ftp.guug.org/pub/
|
|
|
|
MAINTAINER= zuntum@netbsd.org
|
|
COMMENT= Translate ASCII files to/from DOS (cr/lf) and UNIX (lf)
|
|
|
|
USE_BUILDLINK_ONLY= # defined
|
|
WRKSRC= ${WRKDIR}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/unix2dos ${PREFIX}/bin/unix2dos
|
|
${LN} -f ${PREFIX}/bin/unix2dos ${PREFIX}/bin/dos2unix
|
|
${INSTALL_MAN} ${WRKSRC}/man1/unix2dos.1 ${PREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/man1/dos2unix.1 ${PREFIX}/man/man1
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|