Files
chromebrew/packages/dfc.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

36 lines
1.5 KiB
Ruby

require 'package'
class Dfc < Package
description 'dfc displays file system space usage using graphs and colors.'
homepage 'https://projects.gw-computing.net/projects/dfc'
version '3.1.1'
license 'BSD'
compatibility 'all'
source_url 'https://projects.gw-computing.net/attachments/download/615/dfc-3.1.1.tar.gz'
source_sha256 '962466e77407dd5be715a41ffc50a54fce758a78831546f03a6bb282e8692e54'
binary_url({
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/dfc/3.1.1_armv7l/dfc-3.1.1-chromeos-armv7l.tar.xz',
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/dfc/3.1.1_armv7l/dfc-3.1.1-chromeos-armv7l.tar.xz',
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/dfc/3.1.1_i686/dfc-3.1.1-chromeos-i686.tar.xz',
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/dfc/3.1.1_x86_64/dfc-3.1.1-chromeos-x86_64.tar.xz'
})
binary_sha256({
aarch64: '7ba375108b50a370f81a2916ae8636234470ccbdf20283146b5f9564513e0eca',
armv7l: '7ba375108b50a370f81a2916ae8636234470ccbdf20283146b5f9564513e0eca',
i686: 'dbd797ee89ac51aa65dbff47db4bbc6fe7d5c7a4b29cb98da5a54e0985ba95d9',
x86_64: '9dccac46a97222d4f89002c7c5a8bc97b7b1d237b79a53251e03fdf9f4ff17e3'
})
depends_on 'cmake' => :build
depends_on 'gettext'
def self.build
system "cmake . -DPREFIX=#{CREW_PREFIX} -DCMAKE_BUILD_TYPE=RELEASE"
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
end