kyua 0.10 (new formula)

Kyua is a software testing framework.

Closes Homebrew/homebrew#32346.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
Craig Rodrigues 2014-09-22 04:30:06 -07:00 committed by Jack Nagel
parent 88a6d4c026
commit 659ae282c8

22
Formula/kyua.rb Normal file
View file

@ -0,0 +1,22 @@
require "formula"
class Kyua < Formula
homepage "https://github.com/jmmv/kyua"
url "https://github.com/jmmv/kyua/releases/download/kyua-0.10/kyua-0.10.tar.gz"
sha1 "cb2c78c6bf2ab4f543eba61dd3ace75db0de27dc"
depends_on "atf" => :build
depends_on "lutok" => :build
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