Initial version of arduino module.
This commit is contained in:
parent
f6f4ed8711
commit
516c08d91b
2 changed files with 57 additions and 0 deletions
16
arduino/Makefile
Normal file
16
arduino/Makefile
Normal file
|
@ -0,0 +1,16 @@
|
|||
|
||||
VERSION = 0022
|
||||
BASEURL = http://arduino.googlecode.com/files/
|
||||
OUT = /srv/puppet/files/common/packages
|
||||
|
||||
all: $(OUT)/arduino32.tgz $(OUT)/arduino64.tgz
|
||||
|
||||
$(OUT)/arduino32.tgz:
|
||||
@umask 022
|
||||
cd $(OUT) && wget -nv -N $(BASEURL)/arduino-$(VERSION).tgz && \
|
||||
ln -sf arduino-$(VERSION).tgz arduino32.tgz
|
||||
|
||||
$(OUT)/arduino64.tgz:
|
||||
@umask 022
|
||||
cd $(OUT) && wget -nv -N $(BASEURL)/arduino-$(VERSION)-64-2.tgz && \
|
||||
ln -sf arduino-$(VERSION)-64-2.tgz arduino64.tgz
|
Loading…
Add table
Add a link
Reference in a new issue