mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* Add binary_compression value to each package * Remove binary_url values and arrays * Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
29 lines
1.1 KiB
Ruby
29 lines
1.1 KiB
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Guile < Autotools
|
|
description 'Guile is designed to help programmers create flexible applications that can be extended by users or other programmers with plug-ins, modules, or scripts.'
|
|
homepage 'http://www.gnu.org/software/guile/'
|
|
version '3.0.9'
|
|
license 'LGPL-3+'
|
|
compatibility 'all'
|
|
source_url 'https://ftpmirror.gnu.org/guile/guile-3.0.9.tar.xz'
|
|
source_sha256 '1a2625ac72b2366e95792f3fe758fd2df775b4044a90a4a9787326e66c0d750d'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '906f359048d339cde70258acc75d01474c7fb7b45d97f3c8098111c0d688aae0',
|
|
armv7l: '906f359048d339cde70258acc75d01474c7fb7b45d97f3c8098111c0d688aae0',
|
|
i686: 'e9ff3777e595be590a6de7920496b2263647bb1a8938ffa04c6be7bf07b6a574',
|
|
x86_64: '61d770df47c21761e6a35dd1d36cb50d70088e4f51988fa4636b69518a98c1f4'
|
|
})
|
|
|
|
depends_on 'bdwgc' # R
|
|
depends_on 'diffutils' => :build
|
|
depends_on 'glibc' # R
|
|
depends_on 'gmp' # R
|
|
depends_on 'libffi' # R
|
|
depends_on 'libtool' => :build
|
|
depends_on 'libunistring' # R
|
|
depends_on 'readline' # R
|
|
end
|