loop-rs 0.6.1

UNIX's missing loop command
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Loop < Formula
  desc "UNIX's missing `loop` command"
  homepage "https://github.com/Miserlou/Loop"
  url "https://github.com/Miserlou/Loop/archive/master.zip"
  sha256 "ae3faebac27fe4fd1f14de8f348e3df410f0b8fd02deea54ef4abcd1f7e08648"
  head "https://github.com/Miserlou/Loop.git"
  version "0.3.3"

  depends_on "rust" => :build

  def install
    system "cargo", "install", "--root", prefix
  end

  test do
    system "#{bin}/loop", "-V"
  end
end