mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
Install gcc10 dependencies in buildessential (#5618)
Add libyaml to EARLY_PACKAGES in install.sh Add libyaml to buildessential
This commit is contained in:
@@ -18,8 +18,8 @@ CURL="${CURL:-curl}"
|
|||||||
|
|
||||||
# EARLY_PACKAGES cannot depend on crew_profile_base for their core operations (completion scripts are fine)
|
# EARLY_PACKAGES cannot depend on crew_profile_base for their core operations (completion scripts are fine)
|
||||||
EARLY_PACKAGES="gcc10 brotli c_ares libcyrussasl libidn2 libmetalink libnghttp2 libpsl \
|
EARLY_PACKAGES="gcc10 brotli c_ares libcyrussasl libidn2 libmetalink libnghttp2 libpsl \
|
||||||
libtirpc libunistring openldap rtmpdump zstd ncurses ca_certificates ruby libffi openssl \
|
libtirpc libunistring openldap rtmpdump zstd ncurses ca_certificates libyaml ruby libffi \
|
||||||
nettle krb5 p11kit libtasn1 gnutls curl git icu4c"
|
openssl nettle krb5 p11kit libtasn1 gnutls curl git icu4c"
|
||||||
|
|
||||||
LATE_PACKAGES="crew_profile_base less most manpages filecmd mawk readline perl pcre pcre2 python27 python3 \
|
LATE_PACKAGES="crew_profile_base less most manpages filecmd mawk readline perl pcre pcre2 python27 python3 \
|
||||||
sed bz2 lz4 lzip unzip xzutils zip"
|
sed bz2 lz4 lzip unzip xzutils zip"
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ require 'package'
|
|||||||
class Buildessential < Package
|
class Buildessential < Package
|
||||||
description 'A collection of tools essential to compile and build software.'
|
description 'A collection of tools essential to compile and build software.'
|
||||||
homepage ''
|
homepage ''
|
||||||
version '1.12'
|
version '1.13'
|
||||||
license 'GPL-3+'
|
license 'GPL-3+'
|
||||||
compatibility 'all'
|
compatibility 'all'
|
||||||
|
|
||||||
@@ -15,6 +15,12 @@ class Buildessential < Package
|
|||||||
#install first to get ldconfig
|
#install first to get ldconfig
|
||||||
depends_on 'glibc'
|
depends_on 'glibc'
|
||||||
depends_on 'gcc10'
|
depends_on 'gcc10'
|
||||||
|
depends_on 'binutils'
|
||||||
|
depends_on 'gmp'
|
||||||
|
depends_on 'mpfr'
|
||||||
|
depends_on 'mpc'
|
||||||
|
depends_on 'isl'
|
||||||
|
depends_on 'libyaml'
|
||||||
depends_on 'gcc_tools'
|
depends_on 'gcc_tools'
|
||||||
depends_on 'linuxheaders'
|
depends_on 'linuxheaders'
|
||||||
depends_on 'make'
|
depends_on 'make'
|
||||||
|
|||||||
Reference in New Issue
Block a user