blob: be0ddf3279cdaec88b5c39bdebfd5fe357f11b72 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | class Fasd < Formula
  homepage "https://github.com/clvv/fasd"
  url "https://github.com/clvv/fasd/archive/1.0.1.tar.gz"
  sha256 "88efdfbbed8df408699a14fa6c567450bf86480f5ff3dde42d0b3e1dee731f65"
  def install
    bin.install "fasd"
    man1.install "fasd.1"
  end
  test do
    system "#{bin}/fasd", "--init", "auto"
  end
end
 |