homebrew-core/Formula/dfu-util.rb

42 lines
1.1 KiB
Ruby

class DfuUtil < Formula
desc "USB programmer"
homepage "https://dfu-util.sourceforge.io/"
url "https://downloads.sourceforge.net/project/dfu-util/dfu-util-0.10.tar.gz"
sha256 "a03dc58dfc79c056819c0544b2a5970537566460102b3d82cfb038c60e619b42"
license "GPL-2.0"
livecheck do
url :stable
end
bottle do
cellar :any
sha256 "1e960a2b57fd6fa0fbfe5a9bb7aa0e35e24664ee65d686eb8fbef724152bc0d0" => :big_sur
sha256 "3baa1c97498ad73a60b12c1d1ffa192a9b57946be6ced7ab826f3e1135113a74" => :catalina
sha256 "6bc199867512701a02e09aeea49adfefb5d38f413e8401b35025a827fbcc4036" => :mojave
end
head do
url "https://git.code.sf.net/p/dfu-util/dfu-util.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
end
depends_on "pkg-config" => :build
depends_on "libusb"
def install
system "./autogen.sh" if build.head?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
test do
system bin/"dfu-util", "-V"
system bin/"dfu-prefix", "-V"
system bin/"dfu-suffix", "-V"
end
end