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)
31 lines
1022 B
Ruby
31 lines
1022 B
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_compression '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
|