homebrew-core/Formula/moreutils.rb
2015-11-12 03:30:04 +00:00

67 lines
2.5 KiB
Ruby

class Moreutils < Formula
desc "Collection of tools that nobody wrote when UNIX was young"
homepage "https://joeyh.name/code/moreutils/"
url "https://mirrors.ocf.berkeley.edu/debian/pool/main/m/moreutils/moreutils_0.57.orig.tar.gz"
mirror "https://mirrorservice.org/sites/ftp.debian.org/debian/pool/main/m/moreutils/moreutils_0.57.orig.tar.gz"
sha256 "3a7d54b0634e5eda8c3c43490d47cea189156700892dea6d876867cef9bc0d1d"
head "git://git.kitenet.net/moreutils"
bottle do
cellar :any_skip_relocation
revision 1
sha256 "58f4880792b76e847b7ce7ad4ba057c7c63b2ffb0dbe3e6532630e7216c3ee5f" => :el_capitan
sha256 "a7deb1afc2618334d45b48796543a8ca1d01ade8b47937b4fe67a0de19dd32a6" => :yosemite
sha256 "08e96c68bc1786c779b96902164840bcd14342388194c61674711204b96576a0" => :mavericks
end
option "without-parallel", "Build without the 'parallel' tool."
depends_on "docbook-xsl" => :build
conflicts_with "parallel", :because => "Both install a 'parallel' executable."
conflicts_with "task-spooler", :because => "Both install a 'ts' executable."
resource "Time::Duration" do
url "https://cpan.metacpan.org/authors/id/A/AV/AVIF/Time-Duration-1.1.tar.gz"
mirror "http://search.cpan.org/CPAN/authors/id/A/AV/AVIF/Time-Duration-1.1.tar.gz"
sha256 "a69c419c4892f21eba10002e2ab8c55b657b6691cf6873544ef99ef5fd188f4e"
end
resource "IPC::Run" do
url "https://cpan.metacpan.org/authors/id/T/TO/TODDR/IPC-Run-0.92.tar.gz"
mirror "http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/IPC-Run-0.92.tar.gz"
sha256 "e186b46ddf1577d24f11eec1ba42285963c3f71ec7ecb1ce51d6e88c729d46d2"
end
def install
ENV.prepend_create_path "PERL5LIB", libexec/"lib/perl5"
resource("Time::Duration").stage do
system "perl", "Makefile.PL", "INSTALL_BASE=#{libexec}", "--skipdeps"
system "make", "install"
end
resource("IPC::Run").stage do
system "perl", "Makefile.PL", "INSTALL_BASE=#{libexec}"
system "make", "install"
end
inreplace "Makefile",
"/usr/share/xml/docbook/stylesheet/docbook-xsl",
"#{Formula["docbook-xsl"].opt_prefix}/docbook-xsl"
if build.without? "parallel"
inreplace "Makefile", /^BINS=.*\Kparallel/, ""
inreplace "Makefile", /^MANS=.*\Kparallel\.1/, ""
end
system "make", "all"
system "make", "check"
system "make", "install", "PREFIX=#{prefix}"
bin.env_script_all_files(libexec+"bin", :PERL5LIB => ENV["PERL5LIB"])
end
test do
pipe_output("#{bin}/isutf8", "hello", 0)
pipe_output("#{bin}/isutf8", "\xca\xc0\xbd\xe7", 1)
end
end