32 lines
1.1 KiB
Ruby
32 lines
1.1 KiB
Ruby
class Mspdebug < Formula
|
|
desc "Debugger for use with MSP430 MCUs"
|
|
homepage "http://dlbeer.co.nz/mspdebug/"
|
|
url "https://github.com/dlbeer/mspdebug/archive/v0.25.tar.gz"
|
|
sha256 "347b5ae5d0ab0cddb54363b72abe482f9f5d6aedb8f230048de0ded28b7d1503"
|
|
|
|
bottle do
|
|
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:
|
|
http://dlbeer.co.nz/mspdebug/faq.html#rf2500_osx
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system bin/"mspdebug", "--help"
|
|
end
|
|
end
|