34bee0f6ae
msktutil is a program for interoperability with Active Directory that can: * Create a user or computer account in Active Directory * Create a system Kerberos keytab * Add and remove principals to and from that keytab * Change the user or computer account's password Closes Homebrew/homebrew#22802. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
16 lines
512 B
Ruby
16 lines
512 B
Ruby
require 'formula'
|
|
|
|
class Msktutil < Formula
|
|
homepage 'https://code.google.com/p/msktutil/'
|
|
url 'https://msktutil.googlecode.com/files/msktutil-0.5.tar.bz2'
|
|
sha1 '2f00acabd7a98f4ad5be2dd88f3f52349f658bb7'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}",
|
|
"--mandir=#{man}"
|
|
system "make", "install"
|
|
end
|
|
end
|