mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Perl 5.38.2 => 5.40.0 Perl_app_cpanminus 1.7046 => 1.7047 Perl_date_manip 6.91 => 6.95 Perl_glib 1.3293 => 1.3294 Perl_glib_object_introspection 0.050 => 0.051 Perl_http_date 6.05 => 6.06 Perl_http_request 6.44 => 6.46 Perl_io_file 1.51 => 1.55_01 Perl_io_socket_ssl 2.083 => 2.085 Perl_lwp_protocol_https 6.10 => 6.14 Perl_net_http 6.22 => 6.23 Perl_net_ssleay 1.92 => 1.94 Perl_pod_parser 1.66 => 1.67 Perl_stow 2.3.1 => 2.4.0 Perl_test_output 1.033 => 1.034 Perl_text_csv 2.02 => 2.04 Perl_xml_namespacesuport 1.12 => 1.12_9 Perl_xml_parser 2.46 => 2.47 * add binaries for successful builds Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust more packages to use buildsystems, remove binaries for no_compile_needed packages Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add more binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add more binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
33 lines
1.0 KiB
Ruby
33 lines
1.0 KiB
Ruby
require 'package'
|
|
|
|
class Perl_pod_parser < Package
|
|
description 'Perl Pod::Parser - base class for creating POD filters and translators'
|
|
homepage 'https://metacpan.org/pod/Pod::Parser'
|
|
version '1.67-perl5.40'
|
|
license 'GPL-1+ or Artistic'
|
|
compatibility 'all'
|
|
source_url 'https://cpan.metacpan.org/authors/id/M/MA/MAREKR/Pod-Parser-1.67.tar.gz'
|
|
source_sha256 '5deccbf55d750ce65588cd211c1a03fa1ef3aaa15d1ac2b8d85383a42c1427ea'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '3c6f74bb9c0c26489cb439eafac7eee329d67705030602508e1b8c71772ceeb2',
|
|
armv7l: '3c6f74bb9c0c26489cb439eafac7eee329d67705030602508e1b8c71772ceeb2',
|
|
i686: '89276cec5f6f47284346a22a284f4638d9e87cbbf70da8b86bf2c0313a3990ef',
|
|
x86_64: 'e1e81a36e19337176855749dd5858e2ed6c7947f3e875de16a4657806afe6dbd'
|
|
})
|
|
|
|
def self.prebuild
|
|
system 'perl', 'Makefile.PL'
|
|
system "sed -i 's,/usr/local,#{CREW_PREFIX},g' Makefile"
|
|
end
|
|
|
|
def self.build
|
|
system 'make'
|
|
end
|
|
|
|
def self.install
|
|
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
|
end
|
|
end
|