blob: 280dfb06f6a06f2a5555f88e3d5cbe659da81e59 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | class Gvp < Formula
  homepage "https://github.com/pote/gvp"
  url "https://github.com/pote/gvp/archive/v0.2.0.tar.gz"
  sha1 "d05a2f04ba06127c95fb1d1fb10a2643d6d27ac6"
  bottle do
    cellar :any
    sha1 "f1b92b589cc6d28f1287e469ba07e49c9b7a2bac" => :yosemite
    sha1 "76979a476e5590b59cd063845810ab6dd5a01ab4" => :mavericks
    sha1 "ca229e3f90bf71121eb70112a52ffa0865a3ee5c" => :mountain_lion
  end
  def install
    system "./configure", "--prefix=#{prefix}"
    system "make", "install"
  end
  test do
    system "#{bin}/gvp", "init"
    assert File.directory? ".godeps/src"
  end
end
 |