mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* ruby_openssl -> 4.0.1-ruby4.0 in updater-ruby_openssl-4.0.1-ruby4.0 * Mark packages from successful builds as automatically buildable. * updater-ruby_openssl-4.0.1-ruby4.0: Package File Update Run on linux/386 container. * updater-ruby_openssl-4.0.1-ruby4.0: Package File Update Run on linux/amd64 container. * updater-ruby_openssl-4.0.1-ruby4.0: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
26 lines
809 B
Ruby
26 lines
809 B
Ruby
require 'buildsystems/ruby'
|
|
|
|
class Ruby_openssl < RUBY
|
|
description 'Openssl for ruby provides access to ssl/tls and general-purpose cryptography based on the openssl library.'
|
|
homepage 'https://github.com/ruby/openssl'
|
|
version "4.0.1-#{CREW_RUBY_VER}"
|
|
license 'Ruby'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'gem'
|
|
|
|
binary_sha256({
|
|
aarch64: '164904f6486e02dc1561b2d0f166ad9205898c9faab0d70a4582385acf7a33db',
|
|
armv7l: '164904f6486e02dc1561b2d0f166ad9205898c9faab0d70a4582385acf7a33db',
|
|
i686: '8d5507e28649f494b0daf3a97690dae84165836015dc3a766b4548c86f85107c',
|
|
x86_64: '4f12e0815f7768dd533f3ccd009533d0698759724c032095c85b5c961d8b1fc2'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'openssl' # R
|
|
depends_on 'ruby' # R
|
|
|
|
conflicts_ok
|
|
gem_compile_needed
|
|
end
|