mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -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)
26 lines
909 B
Ruby
26 lines
909 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Findutils < Autotools
|
|
description 'the basic directory searching utilities of the GNU operating system'
|
|
homepage 'https://www.gnu.org/software/findutils/'
|
|
version '4.9.0'
|
|
license 'GPL-3+'
|
|
compatibility 'all'
|
|
source_url 'https://ftpmirror.gnu.org/findutils/findutils-4.9.0.tar.xz'
|
|
source_sha256 'a2bfb8c09d436770edc59f50fa483e785b161a3b7b9d547573cb08065fd462fe'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '5da7b4458d47e84fcddd9eddd27d202a3e8abce7e0d92684fbf912b155176075',
|
|
armv7l: '5da7b4458d47e84fcddd9eddd27d202a3e8abce7e0d92684fbf912b155176075',
|
|
i686: '7e02631ff1cc208365692179508851a701c695c17b71905d6d079e5148ec1b0f',
|
|
x86_64: '0611927c689c7732037764964ba8fb2c41f22a9c594c978bd9ae6bf2e259f96e'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'python3' => :build
|
|
|
|
configure_options '--without-selinux'
|
|
run_tests
|
|
end
|