mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* erlang -> 28.4 in updater-erlang-28.4 * updater-erlang-28.4: Package File Update Run on linux/amd64 container. * updater-erlang-28.4: 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>
30 lines
1016 B
Ruby
30 lines
1016 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Erlang < Autotools
|
|
description 'Erlang is a programming language used to build massively scalable soft real-time systems with requirements on high availability.'
|
|
homepage 'https://www.erlang.org/'
|
|
version '28.4'
|
|
license 'Apache-2.0'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://github.com/erlang/otp.git'
|
|
git_hashtag "OTP-#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '5987f01bef274b1538e8810f8cd59c7f5da9fe89c88029e26935bf99c36a1154',
|
|
armv7l: '5987f01bef274b1538e8810f8cd59c7f5da9fe89c88029e26935bf99c36a1154',
|
|
x86_64: 'efa5d89939aaddf38ac379c48c24dc10f364da0a355141822bdf79658d56d280'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'libglu' # R
|
|
depends_on 'openssl' # R
|
|
depends_on 'unixodbc' # R
|
|
depends_on 'wxwidgets' # R
|
|
depends_on 'zlib' # R
|
|
|
|
autotools_configure_options "ERL_OTP=#{Dir.pwd} #{'--disable-year2038' unless ARCH.eql?('x86_64')}"
|
|
end
|