mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* rust coreutils => 0.29 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to uutils * Add built packages for linux/amd64 to uutils * Add built packages for linux/arm/v7 to uutils --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
49 lines
1.6 KiB
Ruby
49 lines
1.6 KiB
Ruby
# Adapted from Arch Linux uutils-coreutils PKGBUILD at:
|
|
# https://github.com/archlinux/svntogit-community/raw/packages/uutils-coreutils/trunk/PKGBUILD
|
|
|
|
require 'package'
|
|
|
|
class Uutils_coreutils < Package
|
|
description 'Cross-platform Rust rewrite of the GNU coreutils'
|
|
homepage 'https://github.com/uutils/coreutils'
|
|
version '0.0.29'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/uutils/coreutils.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'f186e207234d93eb8c644f6bc47967f38ed8b83e18ddb3b71b018701b752c22d',
|
|
armv7l: 'f186e207234d93eb8c644f6bc47967f38ed8b83e18ddb3b71b018701b752c22d',
|
|
i686: '867af55fa9831166b3f45a6d2f0f49f29527ef79c1fe729b556bfb8af20f295a',
|
|
x86_64: 'a0d467d0c9bbaa47569fb538eb7f5a7ae56c9c87fb146c8924a18f29cdb4ce33'
|
|
})
|
|
|
|
depends_on 'rust' => :build
|
|
depends_on 'sphinx' => :build
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
|
|
conflicts_ok # conflicts with coreutils
|
|
|
|
def self.preflight
|
|
%w[coreutils].each do |cutils|
|
|
next unless File.exist? "#{CREW_PREFIX}/etc/crew/meta/#{cutils}.filelist"
|
|
|
|
puts "#{cutils} installed and conflicts with this version.".orange
|
|
puts 'To install this version, execute the following:'.lightblue
|
|
abort "crew remove #{cutils} && crew install uutils_coreutils".lightblue
|
|
end
|
|
end
|
|
|
|
def self.build
|
|
system 'make PROFILE=release MULTICALL=y'
|
|
end
|
|
|
|
def self.install
|
|
system "make install DESTDIR=#{CREW_DEST_DIR} PREFIX=#{CREW_PREFIX} MANDIR=#{CREW_MAN_PREFIX} \
|
|
PROFILE=release MULTICALL=y"
|
|
end
|
|
end
|