aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/msktutil.rb
diff options
context:
space:
mode:
authorporcupo2013-09-24 15:59:33 -0700
committerAdam Vandenberg2013-09-24 21:07:38 -0700
commite50fab616bb97ccdace2092f22630fc2250542e5 (patch)
treeea22ad0d34444d80212b82da48b7692b6023d1bb /Library/Formula/msktutil.rb
parentea47c0c133d2c12f5bcd98e33cbcbf21e4efef58 (diff)
downloadhomebrew-e50fab616bb97ccdace2092f22630fc2250542e5.tar.bz2
msktutil 0.5
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 #22802. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/msktutil.rb')
-rw-r--r--Library/Formula/msktutil.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/msktutil.rb b/Library/Formula/msktutil.rb
new file mode 100644
index 000000000..b3ee6078e
--- /dev/null
+++ b/Library/Formula/msktutil.rb
@@ -0,0 +1,16 @@
+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