Files
chromebrew/packages/disktype.rb
Maximilian Downey Twiss de24923ee8 Add Rubocop CI (#7083)
* 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>
2022-08-22 13:31:25 -04:00

34 lines
1.5 KiB
Ruby

require 'package'
class Disktype < Package
description 'Detects the content format of a disk or disk image by checking for signatures of file systems, partition tables, and boot codes.'
homepage 'https://sourceforge.net/projects/disktype/'
version '9'
license 'BSD'
compatibility 'all'
source_url 'http://downloads.sourceforge.net/project/disktype/disktype/9/disktype-9.tar.gz'
source_sha256 'b6701254d88412bc5d2db869037745f65f94b900b59184157d072f35832c1111'
binary_url({
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/disktype/9_armv7l/disktype-9-chromeos-armv7l.tar.xz',
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/disktype/9_armv7l/disktype-9-chromeos-armv7l.tar.xz',
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/disktype/9_i686/disktype-9-chromeos-i686.tar.xz',
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/disktype/9_x86_64/disktype-9-chromeos-x86_64.tar.xz'
})
binary_sha256({
aarch64: 'dad43a9f53a1e1678c9279ee0190df4b97304f313874d1684820baaec1594852',
armv7l: 'dad43a9f53a1e1678c9279ee0190df4b97304f313874d1684820baaec1594852',
i686: '4f7db66b89b225c401222f728e99d0bd61935f2da271999333ac5e8fb2e09477',
x86_64: '807040a6c0d90a8dd4640b008bb0331402b1c232e243a8a14f1ab236933d60ac'
})
def self.build
system 'make'
end
def self.install
system "install -Dm755 disktype #{CREW_DEST_PREFIX}/bin/disktype"
system "install -Dm644 disktype.1 #{CREW_DEST_PREFIX}/share/man/man1/disktype.1"
end
end