mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Adjust gnu sources to not use ftpmirror. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * ed => 1.22.5 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Mark packages from successful builds as automatically buildable. * gnu_avoid_ftpmirror: Package File Update Run on linux/386 container. * gnu_avoid_ftpmirror: Package File Update Run on linux/amd64 container. * gnu_avoid_ftpmirror: Package File Update Run on linux/arm/v7 container. * Truncate PR Title length as per GitHub requirements. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust gnuastro compatibility. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Ed Reel <edreel@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
24 lines
820 B
Ruby
24 lines
820 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Gsl < Autotools
|
|
description 'The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers.'
|
|
homepage 'https://www.gnu.org/software/gsl/'
|
|
version '2.8'
|
|
license 'GPL-3'
|
|
compatibility 'all'
|
|
source_url 'https://ftp.gnu.org/gnu/gsl/gsl-2.8.tar.gz'
|
|
source_sha256 '6a99eeed15632c6354895b1dd542ed5a855c0f15d9ad1326c6fe2b2c9e423190'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '497fc9bf9043263ef4e6e4cee7f4bd880e69043e507c5588acee271670c3a3a1',
|
|
armv7l: '497fc9bf9043263ef4e6e4cee7f4bd880e69043e507c5588acee271670c3a3a1',
|
|
i686: 'c477d1c6a95531270ceb558fdfe108d0fbf966c003dc653fd7e3c014b6e621bb',
|
|
x86_64: '77040ff7e8b9da1e95c93fed6d6f8e8942c3e64ef790a0775303906f82322aed'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
|
|
run_tests
|
|
end
|