mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
19 lines
562 B
Ruby
19 lines
562 B
Ruby
require 'package'
|
|
Package.load_package("#{__dir__}/openssl.rb")
|
|
|
|
class Libressl < Package
|
|
description 'LibreSSL is a version of the TLS/crypto stack forked from OpenSSL in 2014, with goals of modernizing the codebase, improving security, and applying best practice development processes.'
|
|
homepage 'https://www.libressl.org/'
|
|
version Openssl.version
|
|
license Openssl.license
|
|
compatibility Openssl.compatibility
|
|
|
|
is_fake
|
|
|
|
depends_on 'openssl'
|
|
|
|
def self.postinstall
|
|
puts "\nLibressl is a fake package pointing to openssl.\n".lightblue
|
|
end
|
|
end
|