35 lines
1.3 KiB
Ruby
35 lines
1.3 KiB
Ruby
class Mspdebug < Formula
|
|
desc "Debugger for use with MSP430 MCUs"
|
|
homepage "https://dlbeer.co.nz/mspdebug/"
|
|
url "https://github.com/dlbeer/mspdebug/archive/v0.25.tar.gz"
|
|
sha256 "347b5ae5d0ab0cddb54363b72abe482f9f5d6aedb8f230048de0ded28b7d1503"
|
|
head "https://github.com/dlbeer/mspdebug.git"
|
|
|
|
bottle do
|
|
sha256 "4e512b296b8a655fbe8632afca020866f6499c461fb715aef5c4eb6bdda88034" => :catalina
|
|
sha256 "4d5d8c35966a0000b010bbaea7c2c403ff4921d1306d34d752ccceb3f3d3b155" => :mojave
|
|
sha256 "4124d4fbd9e191d941153962bb74aed50cc200c473b5ad5850610a1bc85f87b4" => :high_sierra
|
|
sha256 "e16447e04c99d74b8cdc49a063c230c64d09e34402d0221542594f3aacac5940" => :sierra
|
|
sha256 "22fc92bc5a594451eb0d0b943bce812619302c795fdad0ca4305c059ccf10a88" => :el_capitan
|
|
sha256 "8b23c23287fc9ab143921257a1859f8ac0dbb9e093261dfe931ec7d6a3548d97" => :yosemite
|
|
end
|
|
|
|
depends_on "hidapi"
|
|
depends_on "libusb-compat"
|
|
|
|
def install
|
|
ENV.append_to_cflags "-I#{Formula["hidapi"].opt_include}/hidapi"
|
|
system "make", "PREFIX=#{prefix}", "install"
|
|
end
|
|
|
|
def caveats; <<~EOS
|
|
You may need to install a kernel extension if you're having trouble with
|
|
RF2500-like devices such as the TI Launchpad:
|
|
https://dlbeer.co.nz/mspdebug/faq.html#rf2500_osx
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system bin/"mspdebug", "--help"
|
|
end
|
|
end
|