Commit 0829b089 authored by Damian Montero's avatar Damian Montero Committed by GitHub

Merge pull request #1069 from flyingP0tat0/patch-19

Add kerberos (krb5)
parents e587561b 6999f65e
require 'package'
class Krb5 < Package
description 'Kerberos is a network authentication protocol.'
homepage 'https://web.mit.edu/kerberos'
version '1.15.1'
source_url 'http://web.mit.edu/kerberos/dist/krb5/1.15/krb5-1.15.1.tar.gz'
source_sha256 '437c8831ddd5fde2a993fef425dedb48468109bb3d3261ef838295045a89eb45'
def self.build
Dir.chdir "src" do
system "./configure --without-system-verto"
system "make"
end
end
def self.install
Dir.chdir "src" do
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment