mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Rename IgnoredPatterns to AllowedPatterns. * Exclude docopt.rb (not our code) from Rubocop * Disable Style/RedundantReturn * Disable Style/MutableConstant * Disable Style/NumericLiterals * Set Layout/IndentationStyle to spaces * Temporarily disable various cops. * Add Rubocop CI via Octocop * Lint tree with rubocop -A -c .rubocop.yml Co-authored-by: Satadru Pramanik <satadru@gmail.com>
33 lines
1.5 KiB
Ruby
33 lines
1.5 KiB
Ruby
require 'package'
|
|
|
|
class Vtable_dumper < Package
|
|
description 'A tool to list content of virtual tables in a shared library'
|
|
homepage 'https://github.com/lvc/vtable-dumper'
|
|
version '1.2'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/lvc/vtable-dumper/archive/1.2.tar.gz'
|
|
source_sha256 '6993781b6a00936fc5f76dc0db4c410acb46b6d6e9836ddbe2e3c525c6dd1fd2'
|
|
|
|
binary_url({
|
|
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/vtable_dumper/1.2_armv7l/vtable_dumper-1.2-chromeos-armv7l.tar.xz',
|
|
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/vtable_dumper/1.2_armv7l/vtable_dumper-1.2-chromeos-armv7l.tar.xz',
|
|
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/vtable_dumper/1.2_i686/vtable_dumper-1.2-chromeos-i686.tar.xz',
|
|
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/vtable_dumper/1.2_x86_64/vtable_dumper-1.2-chromeos-x86_64.tar.xz'
|
|
})
|
|
binary_sha256({
|
|
aarch64: '125f1d0739c19d226753e5d6e464376af7eefb79a3e50058e242599ec53f2b51',
|
|
armv7l: '125f1d0739c19d226753e5d6e464376af7eefb79a3e50058e242599ec53f2b51',
|
|
i686: '3c5f2ef1a858febb6691598d5abfdcf29982f3a899bd7f04b8e49a8999f20e65',
|
|
x86_64: 'fa3de2338008e09bf9f7ad0e69ead44987bb6879e05480c61c61f52f3a57e8e1'
|
|
})
|
|
|
|
def self.build
|
|
system 'make', "DESTDIR=#{CREW_DEST_DIR}", "prefix=#{CREW_PREFIX}"
|
|
end
|
|
|
|
def self.install
|
|
system "install -Dm755 vtable-dumper #{CREW_DEST_PREFIX}/bin/vtable-dumper"
|
|
end
|
|
end
|