homebrew-core/Formula/stlink.rb

25 lines
495 B
Ruby
Raw Normal View History

require "formula"
class Stlink < Formula
homepage "https://github.com/texane/stlink"
url "https://github.com/texane/stlink/archive/1.0.0.tar.gz"
sha1 "d55bbdd8c4c907be15b28d089fddc86e7a167766"
depends_on "libusb"
depends_on :autoconf
depends_on :automake
depends_on "pkg-config" => :build
def install
system "./autogen.sh"
system "./configure", "--prefix=#{prefix}"
system "make"
system "make", "install"
end
test do
system "st-util", "-h"
end
end