8e9a82e41f
Closes #15452. Signed-off-by: Tomasz Pajor <tomek@polishgeeks.com>
16 lines
424 B
Ruby
16 lines
424 B
Ruby
class FormatUdf < Formula
|
|
desc "Bash script to format a block device to UDF"
|
|
homepage "https://github.com/JElchison/format-udf"
|
|
url "https://github.com/JElchison/format-udf/archive/1.5.1.tar.gz"
|
|
sha256 "58644fc128e52c6f886c8852193aef1ee58bfef3a59a1646433c4bfcec0400d8"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "format-udf.sh" => "format-udf"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/format-udf", "-h"
|
|
end
|
|
end
|