homebrew-core/Formula/flash.rb

23 lines
715 B
Ruby

class Flash < Formula
desc "Command-line script to flash SD card images of any kind"
homepage "https://github.com/hypriot/flash"
url "https://github.com/hypriot/flash/releases/download/2.7.1/flash"
sha256 "879057fea97c791a812e5c990d4ea07effd02406d3a267a9b24285c31ea6db3f"
license "MIT"
bottle do
sha256 cellar: :any_skip_relocation, all: "921d89c4e79695dc2ca1daa343c4be623cbbe64020d1d1d277892b5145a2f627"
end
def install
bin.install "flash"
end
test do
cp test_fixtures("test.dmg.gz"), "test.dmg.gz"
system "gunzip", "test.dmg"
output = shell_output("echo foo | #{bin}/flash --device /dev/disk42 test.dmg", 1)
assert_match "Please answer yes or no.", output
end
end