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)
22 lines
844 B
Ruby
22 lines
844 B
Ruby
require 'buildsystems/perl'
|
|
|
|
class Perl_unicode_linebreak < PERL
|
|
description 'Unicode::LineBreak - UAX #14 Unicode Line Breaking Algorithm'
|
|
homepage 'http://search.cpan.org/~nezumi/Unicode-LineBreak-2018.003/lib/Unicode/LineBreak.pod'
|
|
version '2019.001-perl5.38.2'
|
|
license 'GPL-1+ or Artistic'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/hatukanezumi/Unicode-LineBreak.git'
|
|
git_hashtag 'Unicode-LineBreak-2019.001'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'db3f602563a48c48a482e4199a0eb14a033e28951f8b99ea25a6274cd4de93ee',
|
|
armv7l: 'db3f602563a48c48a482e4199a0eb14a033e28951f8b99ea25a6274cd4de93ee',
|
|
i686: '1ef1312e2ec8643322515daaaab94324630f81266f02970dd2b8ba51db9e4611',
|
|
x86_64: '78be2dc27f3779fc4dffdc529d8fb9b7962ea594b3aadefbe88f50cc4bf32c32'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
end
|