Add installation telemetry support to geomyidae. - geomyidae - a small C-based … | |
git clone git://git.codemadness.org/geomyidae | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 98e30eef5de836d8a35de71d00687aa483f8b189 | |
parent 77f7f5ed8370cf11b8992c70e7f5361625b9afa9 | |
Author: Christoph Lohmann <[email protected]> | |
Date: Sat, 11 Feb 2023 18:07:03 +0100 | |
Add installation telemetry support to geomyidae. | |
We have to follow the corpo route. Cyberpunk2023. | |
Diffstat: | |
M Makefile | 6 ++++++ | |
1 file changed, 6 insertions(+), 0 deletions(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -49,6 +49,12 @@ uninstall: | |
rm -f "${DESTDIR}${BINDIR}/${NAME}" | |
rm -f "${DESTDIR}${MANDIR}/${NAME}.8" | |
+telemetry: | |
+ # Adding installation telemetry to be compatible with the | |
+ # industry. | |
+ # Bitreich.org does not log anything, so no harm done. | |
+ printf "/telemetry/geomyidae/installed\n" | nc bitreich.org 70 | |
+ | |
dist: clean | |
mkdir -p ${NAME}-${VERSION} | |
cp -R rc.d CGI README LICENSE index.gph Makefile ${NAME}.8 \ |