xsp 3.0.11 (new formula)
Closes Homebrew/homebrew#38473. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
parent
66d7ccf4c7
commit
d7f0870cf1
1 changed files with 21 additions and 0 deletions
21
Formula/xsp.rb
Normal file
21
Formula/xsp.rb
Normal file
|
@ -0,0 +1,21 @@
|
|||
class Xsp < Formula
|
||||
homepage "https://github.com/mono/xsp"
|
||||
url "https://github.com/mono/xsp/archive/3.0.11.tar.gz"
|
||||
sha256 "290e302a03396c5cff7eb53dae008e9f79dd00aca15ad1e62865907220483baa"
|
||||
|
||||
depends_on "mono"
|
||||
depends_on "automake" => :build
|
||||
depends_on "autoconf" => :build
|
||||
depends_on "pkg-config" => :build
|
||||
|
||||
def install
|
||||
system "./autogen.sh"
|
||||
system "./configure", "--disable-silent-rules",
|
||||
"--prefix=#{prefix}"
|
||||
system "make", "install"
|
||||
end
|
||||
|
||||
test do
|
||||
system "xsp", "--help"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue