summaryrefslogtreecommitdiff
path: root/prom-exporter-mosquitto/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'prom-exporter-mosquitto/Makefile')
-rw-r--r--prom-exporter-mosquitto/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/prom-exporter-mosquitto/Makefile b/prom-exporter-mosquitto/Makefile
new file mode 100644
index 0000000..132eeb7
--- /dev/null
+++ b/prom-exporter-mosquitto/Makefile
@@ -0,0 +1,19 @@
+VERSION := "invalid"
+GITHUB_BASEURL := "https://github.com/jryberg/mosquitto-exporter/releases/download"
+
+.PHONY: clean
+
+all: amd64/mosquitto-exporter arm64/mosquitto-exporter
+
+%/mosquitto-exporter: mosquitto-exporter_$(VERSION)_linux_%.tar.gz
+ mkdir -p $(shell echo $@ | sed 's#/.*##')
+ tar -C $(shell echo $@ | sed 's#/.*##') -xzf "$<"
+
+mosquitto-exporter_$(VERSION)_linux_%.tar.gz:
+ wget -nc --progress=dot:mega "$(GITHUB_BASEURL)/v$(VERSION)/$@" -O "$@"
+ sha256sum -c --ignore-missing sha256sums.txt
+
+clean:
+ rm -rf amd64
+ rm -rf arm64
+ rm -f mosquitto_exporter-$(VERSION).linux-*.tar.gz