mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
635797cf05
The code to decode the radio signal, date/time, and civil warnings is now provided in a library libdcf77.so together with the relevant header files. dcf77pi is now split up into dcf77pi (the live client) and dcf77pi-analyze (the client to analyze log files). The -f parameter of dcf77pi is dropped. Apply minor lint(1) fixes.
30 lines
502 B
Makefile
30 lines
502 B
Makefile
# Created by: rene@FreeBSD.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dcf77pi
|
|
PORTVERSION= 3.0.0.1
|
|
CATEGORIES= comms
|
|
|
|
MAINTAINER= rene@FreeBSD.org
|
|
COMMENT= DCF77 receiver/logger/analyzer and library for the Raspberry Pi
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= rene0
|
|
GH_COMMIT= 92c359d
|
|
|
|
USES= ncurses
|
|
|
|
PORTDOCS= README.md
|
|
|
|
INSTALL_TARGET= install-strip
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|