mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* R => 4.5.1 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/amd64 to branch r. * Fix build_updated_packages typo. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix build_updated_packages typo. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Updated package files for linux/amd64 to branch r. * Updated package files for linux/arm/v7 to branch r. --------- 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>
50 lines
1.5 KiB
Ruby
50 lines
1.5 KiB
Ruby
require 'buildsystems/autotools'
|
|
|
|
class R < Autotools
|
|
description 'R is a free software environment for statistical computing and graphics.'
|
|
homepage 'https://www.r-project.org/'
|
|
version "4.5.1-#{CREW_ICU_VER}"
|
|
license 'GPL-2 or GPL-3 and LGPL-2.1'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url "https://cran.r-project.org/src/base/R-4/R-#{version.split('-')[0]}.tar.xz"
|
|
source_sha256 'b4cb675deaaeb7299d3b265d218cde43f192951ce5b89b7bb1a5148a36b2d94d'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'be5b9c300e23c4477b0d992bfbd2760086547dcac525b0c708c349650a54ae54',
|
|
armv7l: 'be5b9c300e23c4477b0d992bfbd2760086547dcac525b0c708c349650a54ae54',
|
|
x86_64: 'efd9537804839b891a5c4b93f0e1214f26542bbf46b522725cefa46702bf904c'
|
|
})
|
|
|
|
depends_on 'bzip2' # R
|
|
depends_on 'curl' => :build
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'glib' # R
|
|
depends_on 'icu4c' # R
|
|
depends_on 'lapack' # R
|
|
depends_on 'libdeflate' # R
|
|
depends_on 'libice' # R
|
|
depends_on 'libpng' # R
|
|
depends_on 'libsm' # R
|
|
depends_on 'libtiff' # R
|
|
depends_on 'libx11' # R
|
|
depends_on 'libxext' # R
|
|
depends_on 'libxmu' # R
|
|
depends_on 'libxss' # R
|
|
depends_on 'libxt' # R
|
|
depends_on 'pango' # R
|
|
depends_on 'pcre2' => :build
|
|
depends_on 'tcl' # R
|
|
depends_on 'tk' # R
|
|
depends_on 'xdg_utils' => :build
|
|
depends_on 'xzutils' # R
|
|
depends_on 'zlib' # R
|
|
depends_on 'zstd' # R
|
|
|
|
autotools_configure_options '--enable-R-shlib \
|
|
--with-x'
|
|
|
|
run_tests
|
|
end
|