mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* OpenSSH => 9.9p2 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to openssh * Add built packages for linux/amd64 to openssh * Add built packages for linux/arm/v7 to openssh --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
28 lines
1008 B
Ruby
28 lines
1008 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Openssh < Autotools
|
|
description 'OpenSSH is the premier connectivity tool for remote login with the SSH protocol.'
|
|
homepage 'https://www.openssh.com/'
|
|
version '9.9p2'
|
|
license 'BSD and GPL-2'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/openssh/openssh-portable.git'
|
|
git_hashtag "V_#{version.upcase.tr('.', '').chars[0...-1].join('_') + version.chars.pop}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '6d1c5d5a61c18ecb5804739ed3ecd2738c79db33d8d596222161d12e984c626c',
|
|
armv7l: '6d1c5d5a61c18ecb5804739ed3ecd2738c79db33d8d596222161d12e984c626c',
|
|
i686: '13ed28992b3d577dc66d1cec8addbc87c21848a543da6c84de462747360b44ff',
|
|
x86_64: 'bc67ebc6e34c0fcf84f871940f2cdbf8b0255761c2e48a594336c7788694076d'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'libmd' # R
|
|
depends_on 'openssl' # R
|
|
depends_on 'zlib' # R
|
|
|
|
configure_options '--enable-year2038 --without-hardening --without-retpoline'
|
|
end
|