ok bentley@ Sortix rw is a program that reads blocks from the standard input and copies them to the standard output until the end of the standard input. rw(1) is designed to be a replacement for dd(1), providing only the core blockwise I/O. It has a standard command line interface with dashed options, useful and efficient defaults, and is simpler because it doesn't support converting the input (e.g. converting ASCII to/from EBCDIC).
24 lines
473 B
Makefile
24 lines
473 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2018/05/28 02:10:43 bcallah Exp $
|
|
|
|
V = 1.0
|
|
COMMENT = simple dd(1) replacement utility from Sortix
|
|
DISTNAME = rw-portable-${V}
|
|
PKGNAME = rw-${V}
|
|
CATEGORIES = sysutils
|
|
|
|
HOMEPAGE = https://sortix.org/rw/
|
|
MAINTAINER = Brian Callahan <bcallah@openbsd.org>
|
|
|
|
# ISC
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += c
|
|
|
|
MASTER_SITES = https://sortix.org/rw/release/
|
|
|
|
FAKE_FLAGS = DESTDIR= MANDIR="${DESTDIR}${PREFIX}/man"
|
|
|
|
NO_TEST = Yes
|
|
|
|
.include <bsd.port.mk>
|