7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
15 lines
449 B
Ruby
15 lines
449 B
Ruby
require 'formula'
|
|
|
|
class E2fsprogs <Formula
|
|
url 'http://downloads.sourceforge.net/project/e2fsprogs/e2fsprogs/1.41.9/e2fsprogs-1.41.9.tar.gz'
|
|
homepage 'http://e2fsprogs.sourceforge.net/'
|
|
md5 '52f60a9e19a02f142f5546f1b5681927'
|
|
|
|
keg_only "This brew installs several commands which override OS X-provided file system commands."
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end
|