mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04: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)
25 lines
916 B
Ruby
25 lines
916 B
Ruby
require 'buildsystems/perl'
|
|
|
|
class Perl_xml_parser < PERL
|
|
description 'Perl XML::Parser - A perl module for parsing XML documents'
|
|
homepage 'https://metacpan.org/pod/XML::Parser'
|
|
version '2.46-perl5.38.2'
|
|
license 'GPL-1+ or Artistic'
|
|
compatibility 'all'
|
|
source_url 'https://cpan.metacpan.org/authors/id/T/TO/TODDR/XML-Parser-2.46.tar.gz'
|
|
source_sha256 'd331332491c51cccfb4cb94ffc44f9cd73378e618498d4a37df9e043661c515d'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '145526882871fa42720440e83ce399115861019371e4078877557f4ab579fd63',
|
|
armv7l: '145526882871fa42720440e83ce399115861019371e4078877557f4ab579fd63',
|
|
i686: '25d4a67d1a2ff7d83f162e09d7fbc9feef5047e1a7b07a8cacb25e3477cb6846',
|
|
x86_64: '152702033e12d4ad0df20d5e13bc4addc1e09f98c2040486174c82944e0ae1a9'
|
|
})
|
|
|
|
depends_on 'expat' # R
|
|
depends_on 'glibc' # R
|
|
|
|
conflicts_ok # conflicts with perl_date_format
|
|
end
|