diff options
| author | Guo Xiao | 2015-04-09 13:22:33 +0800 |
|---|---|---|
| committer | Mike McQuaid | 2015-04-09 10:34:29 +0100 |
| commit | 0ab54e97183e86b8fd278c7c4ca79a6abb370ba7 (patch) | |
| tree | a2cc12402f9138bae0cb9b4bb7d6dca9c6b23a46 /Library | |
| parent | 349e075736dc45aa0fc0795f4d8010ac5bc99f23 (diff) | |
| download | homebrew-0ab54e97183e86b8fd278c7c4ca79a6abb370ba7.tar.bz2 | |
xsp 3.0.11 (new formula)
Closes #38473.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/xsp.rb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Library/Formula/xsp.rb b/Library/Formula/xsp.rb new file mode 100644 index 000000000..6154b9fe6 --- /dev/null +++ b/Library/Formula/xsp.rb @@ -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 |
