Files
chromebrew/packages/findutils.rb
Maximilian Downey Twiss f6dc1d8d4e Derive binary_url in package.rb (#7082)
* 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)
2024-01-25 11:03:31 -05:00

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