mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
7fe8226d7b
Details: - Add LICENSE_FILE - Use DISTVERSION instead of PORTVERSION - Set the directory to install the manual in via MAKE_ENV and MANDIRS instead of REINPLACE_CMD during the pre-patch target. - Bump PORTREVISION PR: 227608 Submitted by: 0mp Approved by: maintainer timeout
24 lines
474 B
Makefile
24 lines
474 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= rw
|
|
DISTVERSION= 1.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= https://sortix.org/rw/release/
|
|
DISTNAME= rw-portable-${DISTVERSION}
|
|
|
|
MAINTAINER= jsmith@resonatingmedia.com
|
|
COMMENT= Simple replacement for dd wth standard command line flags
|
|
|
|
LICENSE= ISCL
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
PLIST_FILES= bin/rw man/man1/rw.1.gz
|
|
|
|
MAKE_ENV= MANDIR=${MANDIRS}
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|