Last active
September 29, 2020 14:19
-
-
Save zhovner/8368f8a278411a77ff261d4661809140 to your computer and use it in GitHub Desktop.
Old verstion of st-flash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class StlinkCustom < Formula | |
desc "STM32 discovery line Linux programmer" | |
homepage "https://github.com/texane/stlink" | |
url "https://github.com/texane/stlink/archive/v1.5.1.tar.gz" | |
sha256 "e0145fbfd3e781f21baf12a0750b0933c445ee6338e36142836bf5a2c267e107" | |
license "BSD-3-Clause" | |
depends_on "cmake" => :build | |
depends_on "pkg-config" => :build | |
depends_on "libusb" | |
def install | |
system "cmake", ".", *std_cmake_args | |
system "make", "install" | |
end | |
test do | |
assert_match "st-flash #{version}", shell_output("#{bin}/st-flash --debug reset 2>&1", 255) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment