New formula: remctl
Closes Homebrew/homebrew#14112. Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
This commit is contained in:
parent
1c638cf2d1
commit
6705320efa
1 changed files with 16 additions and 0 deletions
16
Formula/remctl.rb
Normal file
16
Formula/remctl.rb
Normal file
|
@ -0,0 +1,16 @@
|
|||
require 'formula'
|
||||
|
||||
class Remctl < Formula
|
||||
homepage 'http://www.eyrie.org/~eagle/software/remctl/'
|
||||
url 'http://archives.eyrie.org/software/kerberos/remctl-3.2.tar.gz'
|
||||
sha1 'f49c287c29b6b289995b8907edc6ecba4c298c99'
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
||||
system "make install"
|
||||
end
|
||||
|
||||
def test
|
||||
system "#{bin}/remctl", "-v"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue