Files
chromebrew/packages/findutils.rb

42 lines
1.5 KiB
Ruby

require 'package'
class Findutils < Package
description 'the basic directory searching utilities of the GNU operating system'
homepage 'https://www.gnu.org/software/findutils/'
version '4.8.0'
license 'GPL-3+'
compatibility 'all'
source_url 'https://ftpmirror.gnu.org/findutils/findutils-4.8.0.tar.xz'
source_sha256 '57127b7e97d91282c6ace556378d5455a9509898297e46e10443016ea1387164'
binary_url ({
aarch64: 'https://downloads.sourceforge.net/project/chromebrew/armv7l/findutils-4.8.0-chromeos-armv7l.tar.xz',
armv7l: 'https://downloads.sourceforge.net/project/chromebrew/armv7l/findutils-4.8.0-chromeos-armv7l.tar.xz',
i686: 'https://downloads.sourceforge.net/project/chromebrew/i686/findutils-4.8.0-chromeos-i686.tar.xz',
x86_64: 'https://downloads.sourceforge.net/project/chromebrew/x86_64/findutils-4.8.0-chromeos-x86_64.tar.xz',
})
binary_sha256 ({
aarch64: 'e20da96c2bc854e84a1f0f7f6f6876d5d5a36c8add7ebf3d8df94b64299ab25c',
armv7l: 'e20da96c2bc854e84a1f0f7f6f6876d5d5a36c8add7ebf3d8df94b64299ab25c',
i686: '3246911390cb99054dc438bf67f01bb91453363fb95e2c10a5cf9170d965d1f3',
x86_64: '98a700b356ab5b021e51116cdbc80c86ee36168e8583bdd8e49a205938c18562',
})
depends_on 'python3'
ENV['PYTHON'] = "python3" #Force use of python3 over python2.7
def self.build
system "./configure #{CREW_OPTIONS} \
--without-selinux"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
def self.check
system "make", "check"
end
end