44 lines
1.6 KiB
Ruby
44 lines
1.6 KiB
Ruby
class Dosfstools < Formula
|
|
desc "Tools to create, check and label file systems of the FAT family"
|
|
homepage "https://github.com/dosfstools"
|
|
head "https://github.com/dosfstools/dosfstools.git"
|
|
|
|
stable do
|
|
url "https://github.com/dosfstools/dosfstools/releases/download/v4.1/dosfstools-4.1.tar.gz"
|
|
sha256 "dc49997fd9fcd6e550c1a0dd5f97863d6ded99d465c33633a2b8769f4d72a137"
|
|
|
|
# This patch restores the old defaults in versions up to v3.0.28
|
|
patch do
|
|
url "https://github.com/dosfstools/dosfstools/commit/1e76e577.patch"
|
|
sha256 "824c800a589db8a779fddbbd4b8eef5a2941f838ef8f46ad390a680c8cabd2a4"
|
|
end
|
|
end
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "d0241bbd6538c79b56d67ba986f527df1bf0afa844121b13d1fe2a5120f01192" => :sierra
|
|
sha256 "c413f4e02ff6b4de101a330c619816dd16ae898a02d69a9c85eb60884045f898" => :el_capitan
|
|
sha256 "dbd0957d4593c54d62046d3f4546a0a3bfbd3b00ee254011dc5a7051eafa0945" => :yosemite
|
|
end
|
|
|
|
option "with-compat-symlinks",
|
|
"Symlink older names of the tools to the current ones on installation"
|
|
|
|
depends_on "automake" => :build
|
|
depends_on "autoconf" => :build
|
|
depends_on "pkg-config" => :build
|
|
|
|
def install
|
|
system "autoreconf", "-f", "-i"
|
|
args = %W[--without-udev --prefix=#{prefix}]
|
|
args << "--enable-compat-symlinks" if build.with? "compat-symlinks"
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system "dd", "if=/dev/zero", "of=test.bin", "bs=512", "count=1024"
|
|
system "#{sbin}/mkfs.fat", "test.bin", "-n HOMEBREW", "-v"
|
|
system "#{sbin}/fatlabel", "test.bin"
|
|
system "#{sbin}/fsck.fat", "-v", "test.bin"
|
|
end
|
|
end
|