homebrew-core/Formula/rmlint.rb
2016-12-25 12:06:29 +01:00

37 lines
1.2 KiB
Ruby

class Rmlint < Formula
desc "Extremely fast tool to remove dupes and other lint from your filesystem"
homepage "https://github.com/sahib/rmlint"
url "https://github.com/sahib/rmlint/archive/v2.4.5.tar.gz"
sha256 "33a7c1755957572976caf33f413cda02e67b55089843ef0d7305fa496f79cfff"
bottle do
cellar :any
sha256 "906e04c346f1c20aa5f42aef75f45f76d758f8e7cb18b78178dbeb1a5b73a77a" => :sierra
sha256 "5eaa91172e5d5580fad4b382182721704008bb20515965e57897486f6792100e" => :el_capitan
sha256 "e1230b201afba08957e237a92e837933fd5b69b02705f1b5fde31fc88e9b7c4e" => :yosemite
end
option "with-json-glib", "Add support for reading json caches"
option "with-libelf", "Add support for finding non-stripped binaries"
depends_on "glib" => :run
depends_on "gettext" => :build
depends_on "pkg-config" => :build
depends_on "scons" => :build
depends_on "sphinx-doc" => :build
depends_on "json-glib" => :optional
depends_on "libelf" => :optional
def install
scons "config"
scons
bin.install "rmlint"
man1.install "docs/rmlint.1.gz"
end
test do
(testpath/"1.txt").write("1")
(testpath/"2.txt").write("1")
assert_match "# Duplicate(s):", shell_output("#{bin}/rmlint")
end
end