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:
parent
88a6d4c026
commit
659ae282c8
1 changed files with 22 additions and 0 deletions
22
Formula/kyua.rb
Normal file
22
Formula/kyua.rb
Normal 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
|
Loading…
Reference in a new issue