mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
b4e53583f8
Approved by: araujo (mentor)
25 lines
524 B
Makefile
25 lines
524 B
Makefile
# New ports collection makefile for: serialoverip
|
|
# Date created: 3 September 2006
|
|
# Whom: Devon H. O'Dell <devon.odell@coyotepoint.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= serialoverip
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= comms net
|
|
MASTER_SITES= CSME
|
|
|
|
MAINTAINER= devon.odell@gmail.com
|
|
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>
|