mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -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)
33 lines
1.0 KiB
Ruby
33 lines
1.0 KiB
Ruby
require 'package'
|
|
|
|
class Tidy < Package
|
|
description 'The granddaddy of HTML tools, with support for modern standards'
|
|
homepage 'http://www.html-tidy.org/'
|
|
version '5.8.0-1'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/htacg/tidy-html5/archive/5.8.0.tar.gz'
|
|
source_sha256 '59c86d5b2e452f63c5cdb29c866a12a4c55b1741d7025cf2f3ce0cde99b0660e'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '968686c5c89e00f8fdb99f5840430bd028360726404558b0686ac4e018f2a00d',
|
|
armv7l: '968686c5c89e00f8fdb99f5840430bd028360726404558b0686ac4e018f2a00d',
|
|
i686: '911e08b1a7e63ca787429839ace0c6e573e6ef60ce248e66c093da0911c2a9f4',
|
|
x86_64: '59f1d096f5c745ae606f37e136aac3aa4b0ae4337efa4ee7415ffed9f946d0ff'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
|
|
def self.build
|
|
system "cmake -B builddir #{CREW_CMAKE_LIBSUFFIX_OPTIONS} \
|
|
-DBUILD_TAB2SPACE=ON \
|
|
-G Ninja"
|
|
system "#{CREW_NINJA} -C builddir"
|
|
end
|
|
|
|
def self.install
|
|
system "DESTDIR=#{CREW_DEST_DIR} #{CREW_NINJA} -C builddir install"
|
|
end
|
|
end
|