8acb9f6a98
Closes Homebrew/homebrew#13968. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
35 lines
1.1 KiB
Ruby
35 lines
1.1 KiB
Ruby
require 'formula'
|
|
|
|
class E2fsprogs < Formula
|
|
homepage 'http://e2fsprogs.sourceforge.net/'
|
|
url 'http://prdownloads.sourceforge.net/e2fsprogs/e2fsprogs-1.42.5.tar.gz'
|
|
sha1 '41bc6d247238eac65864193e6de941956da493cb'
|
|
|
|
head 'https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git'
|
|
|
|
keg_only "This brew installs several commands which override OS X-provided file system commands."
|
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
def patches
|
|
# MacPorts patch to compile libs correctly.
|
|
p = {:p0 => [
|
|
"https://trac.macports.org/export/92117/trunk/dports/sysutils/e2fsprogs/files/patch-lib__Makefile.darwin-lib"
|
|
]}
|
|
|
|
# MacPorts patch to allow compilation on Leopard.
|
|
if MacOS.leopard?
|
|
p[:p0] << "https://trac.macports.org/export/92117/trunk/dports/sysutils/e2fsprogs/files/patch-lib-ext2fs-inline.c.diff"
|
|
end
|
|
|
|
p
|
|
end
|
|
|
|
def install
|
|
ENV.append_to_cflags "--std=gnu89 -Wno-return-type" if ENV.compiler == :clang
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make"
|
|
system "make install"
|
|
system "make install-libs"
|
|
end
|
|
end
|