bwctl 1.5.2-10 (new formula)
Closes Homebrew/homebrew#34707. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
parent
7772bd476b
commit
89b7450614
1 changed files with 21 additions and 0 deletions
21
Formula/bwctl.rb
Normal file
21
Formula/bwctl.rb
Normal file
|
@ -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
|
Loading…
Reference in a new issue