aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bwctl.rb
diff options
context:
space:
mode:
authorBrian Candler2014-12-05 16:33:57 +0000
committerMike McQuaid2014-12-05 19:16:17 +0000
commitb711993b26b3dbfe1816c087bf404e5be50d55a8 (patch)
treec31b2a994dc60e663fb5bcdb3f91deb7d56eef44 /Library/Formula/bwctl.rb
parent85eb3faa79113ef63b7c108b4b24a10d8dd6191e (diff)
downloadhomebrew-b711993b26b3dbfe1816c087bf404e5be50d55a8.tar.bz2
bwctl 1.5.2-10 (new formula)
Closes #34707. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula/bwctl.rb')
-rw-r--r--Library/Formula/bwctl.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/Library/Formula/bwctl.rb b/Library/Formula/bwctl.rb
new file mode 100644
index 000000000..c507bf822
--- /dev/null
+++ b/Library/Formula/bwctl.rb
@@ -0,0 +1,21 @@
+require "formula"
+
+class Bwctl < Formula
+ homepage "http://software.internet2.edu/bwctl/"
+ url "http://software.internet2.edu/sources/bwctl/bwctl-1.5.2-10.tar.gz"
+ sha1 "5dcc7a1d671ac8e061f859a430d56ae2551f507e"
+
+ depends_on "i2util"
+
+ def install
+ system "./configure", "--disable-debug",
+ "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--mandir=#{man}"
+ system "make", "install"
+ end
+
+ test do
+ system "#{bin}/bwctl", "-V"
+ end
+end