from Paul B. Henson; OK sthen@ Comment: line-buffered select interface Description: The purpose of this module is to implement a buffered version of the select interface that operates on lines, rather than characters. Given a set of filehandles, it will block until a full line is available on one or more of them.
20 lines
340 B
Makefile
20 lines
340 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2018/09/24 15:47:38 bluhm Exp $
|
|
|
|
COMMENT = line-buffered select interface
|
|
|
|
DISTNAME = IO-BufferedSelect-1.0
|
|
|
|
CATEGORIES = devel
|
|
|
|
MAINTAINER = Alexander Bluhm <bluhm@openbsd.org>
|
|
|
|
# Perl
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MODULES = cpan
|
|
|
|
PKG_ARCH = *
|
|
WRKDIST = ${WRKDIR}/IO-BufferedSelect
|
|
|
|
.include <bsd.port.mk>
|