mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
25 lines
560 B
Makefile
25 lines
560 B
Makefile
# Created by: Gleb Smirnoff <glebius@FreeBSD.org>
|
|
|
|
PORTNAME= gpxloggerd
|
|
PORTVERSION= 0.2.4
|
|
CATEGORIES= astro
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= glebius
|
|
|
|
MAINTAINER= glebius@FreeBSD.org
|
|
COMMENT= Daemon that connects to the GPSD daemon and logs GPS traces
|
|
|
|
LIB_DEPENDS= libgps.so:astro/gpsd
|
|
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
PLIST_FILES= sbin/${PORTNAME} \
|
|
man/man8/${PORTNAME}.8.gz
|
|
|
|
LDFLAGS+= -lm
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin/
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${STAGEDIR}${PREFIX}/man/man8/
|
|
|
|
.include <bsd.port.mk>
|