mirror of
https://github.com/netbirdio/FreeBSD-ports.git
synced 2026-05-22 18:42:42 -07:00
25 lines
499 B
Makefile
25 lines
499 B
Makefile
PORTNAME= qstats
|
|
PORTVERSION= 0.2
|
|
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
|
|
|
|
CFLAGS+= -lsbuf
|
|
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>
|