mirror of
https://github.com/netbirdio/FreeBSD-ports.git
synced 2026-05-22 18:42:42 -07:00
30 lines
558 B
Makefile
30 lines
558 B
Makefile
# Created by: Ermal Luçi
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dhcpleases
|
|
PORTVERSION= 0.5
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= # empty
|
|
DISTFILES= # none
|
|
EXTRACT_ONLY= # empty
|
|
|
|
MAINTAINER= coreteam@pfsense.org
|
|
COMMENT= read dhpcd.lease file and add it to hosts file
|
|
|
|
LICENSE= APACHE20
|
|
|
|
WHERE= sbin
|
|
PLIST_FILES= ${WHERE}/${PORTNAME}
|
|
|
|
do-extract:
|
|
mkdir -p ${WRKSRC}
|
|
|
|
do-build:
|
|
${CC} ${CFLAGS} -o ${WRKSRC}/${PORTNAME} ${FILESDIR}/${PORTNAME}.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/${WHERE}/
|
|
|
|
.include <bsd.port.mk>
|