homebrew-core/Formula/kyua.rb

28 lines
855 B
Ruby
Raw Normal View History

class Kyua < Formula
desc "Testing framework for infrastructure software"
homepage "https://github.com/jmmv/kyua"
url "https://github.com/jmmv/kyua/releases/download/kyua-0.11/kyua-0.11.tar.gz"
sha256 "2b8b64a458b642df75086eeb73e8073d105b8d9cff04c9b1a905b68bc8502560"
2014-09-22 22:40:54 +00:00
bottle do
2014-10-23 21:11:53 +00:00
sha1 "d9aec0a429eea528157e8f9442a39601047b29c9" => :yosemite
sha1 "34c93c5aca199d6b6382c067d1b9e7b4899a3e32" => :mavericks
sha1 "a44bd2fbf521782a7f9e93b85ef48ebfd3d38b91" => :mountain_lion
2014-09-22 22:40:54 +00:00
end
depends_on "atf"
depends_on "lutok"
depends_on "pkg-config" => :build
depends_on "lua"
depends_on "sqlite"
def install
system "./configure", "--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make"
ENV.j1
system "make", "install"
end
end