blob: 7c8ad646d7fc7ed0a3687edf3a3412e3b345fe7f (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 | class Vttest < Formula
  homepage "http://invisible-island.net/vttest/"
  url "ftp://invisible-island.net/vttest/vttest-20140305.tgz"
  mirror "http://invisible-mirror.net/archives/vttest/vttest-20140305.tgz"
  sha256 "0168aa34061d4470a68b0dd0781a2a9e2bbfb1493e540c99f615b867a11cbf83"
  bottle do
    cellar :any
    sha256 "2584fb77678acad877286416b79db38673320ec028e6a6add37b987b150af648" => :yosemite
    sha256 "e2faf045a9a09d49e64f104bf65ca7a8fabf4552a50621bd22206e80ef579844" => :mavericks
    sha256 "acb979d3b90f828d2b504b9f0872ad4eb3c421d30872ad291df91123038433d4" => :mountain_lion
  end
  def install
    system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
    system "make"
    system "make", "install"
  end
  test do
    assert File.exist? bin/"vttest"
  end
end
 |