mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -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)
39 lines
1.1 KiB
Ruby
39 lines
1.1 KiB
Ruby
require 'package'
|
|
|
|
class Perf < Package
|
|
description 'Linux profiling with performance counters'
|
|
homepage 'https://perf.wiki.kernel.org/index.php/Main_Page'
|
|
version '4.14'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.xz'
|
|
|
|
binary_sha256({
|
|
aarch64: '87c533c2b45a9beec0ef975b4a3f110e42a6d03def1820dfd3190fb3f767e710',
|
|
armv7l: '87c533c2b45a9beec0ef975b4a3f110e42a6d03def1820dfd3190fb3f767e710',
|
|
i686: '9786bce0863320385c3dd96534c681e5eae26d593851bde4278d30aa4dedec22',
|
|
x86_64: '95e550bc751bd655a0d885104ec0f88aad533b8450af35438802f0a848b768be'
|
|
})
|
|
|
|
# Reuse linux sources if they're already installed
|
|
depends_on 'linux_sources' => :build
|
|
|
|
def self.build
|
|
Dir.chdir("#{CREW_PREFIX}/src/linux/tools/perf") do
|
|
system "make WERROR=0 prefix=#{CREW_PREFIX}"
|
|
end
|
|
end
|
|
|
|
def self.install
|
|
Dir.chdir("#{CREW_PREFIX}/src/linux/tools/perf") do
|
|
system 'make',
|
|
'WERROR=0',
|
|
'missing_tools=xmlto', # Docs are broken, disable
|
|
"prefix=#{CREW_PREFIX}",
|
|
"DESTDIR=#{CREW_DEST_DIR}",
|
|
'install'
|
|
end
|
|
end
|
|
end
|