aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/teensy_loader_cli.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/teensy_loader_cli.rb b/Library/Formula/teensy_loader_cli.rb
new file mode 100644
index 000000000..2e64d6753
--- /dev/null
+++ b/Library/Formula/teensy_loader_cli.rb
@@ -0,0 +1,18 @@
+require "formula"
+
+class TeensyLoaderCli < Formula
+ homepage "https://www.pjrc.com/teensy/loader_cli.html"
+ url "https://www.pjrc.com/teensy/teensy_loader_cli.2.1.zip"
+ sha1 "041459720e733f78ba4e6a14abdbaa8bf04eb007"
+
+ def install
+ ENV['OS'] = 'MACOSX'
+ ENV['SDK'] = MacOS.sdk_path
+ system "make"
+ bin.install "teensy_loader_cli"
+ end
+
+ test do
+ assert `#{bin}/teensy_loader_cli 2>&1`.include?('<MCU> = atmega32u4 | at90usb162 | at90usb646 | at90usb1286')
+ end
+end