blob: 121fcdea8e449fa6d0ff5c07509847692154e69a (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
 | class Mmv < Formula
  homepage "https://packages.debian.org/unstable/utils/mmv"
  url "https://mirrors.kernel.org/debian/pool/main/m/mmv/mmv_1.01b.orig.tar.gz"
  mirror "http://ftp.us.debian.org/debian/pool/main/m/mmv/mmv_1.01b.orig.tar.gz"
  sha256 "0399c027ea1e51fd607266c1e33573866d4db89f64a74be8b4a1d2d1ff1fdeef"
  bottle do
    cellar :any
    sha256 "641962679fc8a58e20a85dbd9dee69815e16b20a26267e363e3bbfb41813d606" => :yosemite
    sha256 "9cecc4fcacdfc1e60e8c3f75f664860202f4d174914a230436df01f91264d74c" => :mavericks
    sha256 "93ed9a7dfccede4332745f30e455b504bebf1a24d3720176df001efd28e8eb3c" => :mountain_lion
  end
  patch do
    url "http://ftp.us.debian.org/debian/pool/main/m/mmv/mmv_1.01b-15.diff.gz"
    sha256 "9ad3e3d47510f816b4a18bae04ea75913588eec92248182f85dd09bc5ad2df13"
  end
  def install
    system "make", "CC=#{ENV.cc}", "LDFLAGS="
    bin.install "mmv"
    man1.install "mmv.1"
    %w[mcp mad mln].each do |mxx|
      bin.install_symlink "mmv" => mxx
      man1.install_symlink "mmv.1" => "#{mxx}.1"
    end
  end
  test do
    touch testpath/"a"
    touch testpath/"b"
    pipe_output(bin/"mmv", "a b\nb c\n")
    assert !(testpath/"a").exist?
    assert (testpath/"c").exist?
  end
end
 |