1
0
mirror of https://github.com/pgrondek/config.git synced 2024-11-21 19:43:42 +00:00

[Arduino] add makefile

This commit is contained in:
pgrondek 2020-02-23 21:43:50 +01:00
parent 0e968b9cb1
commit 0dae8a6874

28
arduino/Makefile Normal file
View File

@ -0,0 +1,28 @@
HOME_BIN_DIR=$(HOME)/bin
HOME_BIN_LINK=$(HOME_BIN_DIR)/arduino
ifeq ("x86_64","$(shell uname -m)")
ARCH=linux64
else
ARCH=unknown
endif
ARDUINO_VERSION=1.8.12
ARDUINO_URL=https://downloads.arduino.cc/arduino-$(ARDUINO_VERSION)-$(ARCH).tar.xz
TMPDIR:=$(shell mktemp -d)
SUDO=sudo
OUT_DIR=/opt/arduino
.PHONY: install
clean:
$(SUDO) rm -rf $(OUT_DIR)
rm -rf $(HOME_BIN_LINK)
install:
wget -qO- $(ARDUINO_URL) | tar xJ -C $(TMPDIR)
$(SUDO) cp -r $(TMPDIR)/arduino-$(ARDUINO_VERSION) $(OUT_DIR)
$(SUDO) chmod 755 $(OUT_DIR)
$(SUDO) rm -rf $(TMPDIR)
ln -s $(OUT_DIR)/arduino $(HOME_BIN_LINK)