mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
29 lines
1.6 KiB
Ruby
29 lines
1.6 KiB
Ruby
require 'package'
|
|
|
|
class Compressdoc < Package
|
|
description 'Compress (with bzip2 or gzip) all man pages in a hierarchy and update symlinks'
|
|
homepage 'https://github.com/ojab/BLFS/blob/master/auxfiles/compressdoc'
|
|
version '20080421.1623'
|
|
license '' # Can't find license for project
|
|
compatibility 'all'
|
|
source_url 'https://raw.githubusercontent.com/ojab/BLFS/af6c11d985fe36c8828abaa9d5124c8725580b15/auxfiles/compressdoc'
|
|
source_sha256 'f380473baaa8785b1c7a7a30f2dda4b748a9baed3b335655faedad49ebf8246b'
|
|
|
|
binary_url ({
|
|
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/compressdoc/20080421.1623_armv7l/compressdoc-20080421.1623-chromeos-armv7l.tar.xz',
|
|
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/compressdoc/20080421.1623_armv7l/compressdoc-20080421.1623-chromeos-armv7l.tar.xz',
|
|
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/compressdoc/20080421.1623_i686/compressdoc-20080421.1623-chromeos-i686.tar.xz',
|
|
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/compressdoc/20080421.1623_x86_64/compressdoc-20080421.1623-chromeos-x86_64.tar.xz',
|
|
})
|
|
binary_sha256 ({
|
|
aarch64: '3e63d392982f5ccfd330f927febec36b18a53ad722b26a4beb2f4de3efad6c94',
|
|
armv7l: '3e63d392982f5ccfd330f927febec36b18a53ad722b26a4beb2f4de3efad6c94',
|
|
i686: '9ec4c600cdbff22fe39a719b28fda93ffa78b9517ef930091ff05c486b72123f',
|
|
x86_64: 'ff47516fe18e91d4e1a255b4a78f336a0cba0dd06c8ee6c4aa3b45e1c9ea8ec8',
|
|
})
|
|
|
|
def self.install
|
|
system "install -Dm755 ../compressdoc #{CREW_DEST_PREFIX}/bin/compressdoc"
|
|
end
|
|
end
|