mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 16:08:08 -05:00
* modify glibc * initial working armv7l install on top of aarch64 * have install.sh use glibc_lib * add zlibpkg and gmp to BOOTSTRAP_PACKAGES * add chromebrew postinstall * cleanup git postinstall, fixup install.sh * add newline to echo cmd in install.sh * Rework pre-Glibc 2.35 versions. * add back i686 to install.sh, and enable install on non glibc-2.35 systems * suggested changes * change default repo and owner back in install.sh * fix postinstall in install.sh * add shellcheck exclusion * move aarch64 armv7l userspace end of install message * lint * remove old install.sh.deprecated * add glibc 2.27 filelists * cleanup libc_version case in install.sh * suggested changes * suggested changes to install.sh * suggested changes * always write our shell rc files * fixup crew_profile_base * suggested changes * gimp needs gcc_dev for libgomp * revert to old i686 arch detection * remove patchelf from core * speed up mandb cache build * speed up mandb cache build * time not available on all systems
21 lines
464 B
Ruby
21 lines
464 B
Ruby
require 'package'
|
|
require_relative 'glibc_build235'
|
|
|
|
class Glibc_dev < Package
|
|
description 'glibc: everything except what is in glibc_lib'
|
|
homepage Glibc_build235.homepage
|
|
version '2.35'
|
|
license Glibc_build235.license
|
|
compatibility 'x86_64 aarch64 armv7l'
|
|
source_url 'SKIP'
|
|
|
|
is_fake
|
|
|
|
case LIBC_VERSION
|
|
when '2.35'
|
|
version Glibc_build235.version.to_s
|
|
compatibility Glibc_build235.compatibility.to_s
|
|
depends_on 'glibc_dev235'
|
|
end
|
|
end
|