require 'package' class Health_check < Package description 'The health-check tool monitors processes in various ways to help identify areas where it is consuming too many resources.' homepage 'https://kernel.ubuntu.com/~cking/health-check/' version '0.02.08' license 'GPL-2' compatibility 'all' source_url 'http://kernel.ubuntu.com/~cking/tarballs/health-check/health-check-0.02.08.tar.gz' source_sha256 'be4f14affaa80dc634cc4cf41efc0b3164e5b1758674762f0a2322d2ccbfbd52' binary_compression 'tar.xz' binary_sha256({ aarch64: '1bed3ca7034d5e94be02ceecd5ddf14ce7faf8abcee1c9de3c6053ae8eabd179', armv7l: '1bed3ca7034d5e94be02ceecd5ddf14ce7faf8abcee1c9de3c6053ae8eabd179', i686: '823e9b541b221ab9d6f8d7a790952fa70f3862d60c3444e778803e0161b3b34b', x86_64: '7cbdce7237b0d8a6dcfeabf7cc143c08111af98875e83cb441346769cdbfa033' }) depends_on 'json_c' def self.build system 'make' system 'gzip -9 health-check.8' end def self.install system "install -Dm755 health-check #{CREW_DEST_PREFIX}/bin/health-check" system "install -Dm644 health-check.8.gz #{CREW_DEST_PREFIX}/share/man/man8/health-check.8.gz" end end