mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
21 lines
436 B
Makefile
21 lines
436 B
Makefile
# Created by: Devon H. O'Dell <devon.odell@coyotepoint.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= serialoverip
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= comms net
|
|
MASTER_SITES= CSME
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Transport of serial interfaces over UDP/IP
|
|
|
|
PLIST_FILES= sbin/${PORTNAME}
|
|
|
|
do-build:
|
|
@cd ${WRKSRC}; ${CC} ${CFLAGS} ${PORTNAME}.c -o ${PORTNAME}
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/sbin/
|
|
|
|
.include <bsd.port.mk>
|