mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* crew; Include file size in file list Signed-off-by: SupeChicken666 <supechicken666@gmail.com> * Bump version Signed-off-by: SupeChicken666 <supechicken666@gmail.com> * Use `.grep` instead of `.reject` Signed-off-by: SupeChicken666 <supechicken666@gmail.com> * Bump version Signed-off-by: SupeChicken666 <supechicken666@gmail.com> --------- Signed-off-by: SupeChicken666 <supechicken666@gmail.com> Co-authored-by: Satadru Pramanik, DO, MPH, MEng <satadru@gmail.com>
41 lines
1.4 KiB
Ruby
41 lines
1.4 KiB
Ruby
require 'package'
|
|
Package.load_package("#{__dir__}/glibc_build235.rb")
|
|
|
|
class Glibc_lib235 < Package
|
|
description 'glibc libraries'
|
|
homepage Glibc_build235.homepage
|
|
version '2.35' # Do not use @_ver here, it will break the installer.
|
|
license Glibc_build235.license
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
min_glibc version.split('-').first
|
|
max_glibc version.split('-').first
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '877f6ce14ccdbf7ca103a0e131d40a1f91654183599812b4917eae7cfce37550',
|
|
armv7l: '877f6ce14ccdbf7ca103a0e131d40a1f91654183599812b4917eae7cfce37550',
|
|
x86_64: '66d0971a2fbf1b69c7030ba7a8bde986baeef38870ee13606d16f381f16a551a'
|
|
})
|
|
|
|
depends_on 'glibc_build235' => :build
|
|
|
|
conflicts_ok
|
|
no_upstream_update
|
|
|
|
def self.install
|
|
puts 'Installing Glibc_build235 to pull files for build...'.lightblue
|
|
@filelist_path = File.join(CREW_META_PATH, 'glibc_build235.filelist')
|
|
abort 'File list for Glibc_build235 does not exist!'.lightred unless File.file?(@filelist_path)
|
|
@filelist = File.readlines(@filelist_path, chomp: true).grep(/^(?!#)/)
|
|
|
|
@filelist.each do |filename|
|
|
next unless filename.include?('.so') || filename.include?('bin/')
|
|
|
|
@destpath = File.join(CREW_DEST_DIR, filename)
|
|
@filename_target = File.realpath(filename)
|
|
FileUtils.install @filename_target, @destpath
|
|
end
|
|
end
|
|
end
|