mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 15:13:56 -05:00
* version.rb: Allow rust package version to be updated. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update xdg_base package. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * perl_locale_messages => perl_libintl_perl Signed-off-by: Satadru Pramanik <satadru@gmail.com> * popt => 1.19 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * mawk => 1.3.4-20250131 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * rdfind => 1.7.0 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * doxygen => 1.14.0 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fixup anitya mappings and package versions. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * libunbound => 1.24.0 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * progress => 0.17 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update ag Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust packages.yml Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add gnu_time to essential packages since it is used in tests. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * suggested changes Signed-off-by: Satadru Pramanik <satadru@gmail.com> * more suggested changes Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
25 lines
1.0 KiB
Ruby
25 lines
1.0 KiB
Ruby
require 'buildsystems/perl'
|
|
|
|
class Perl_libintl_perl < PERL
|
|
description 'Internationalization library for Perl that aims to be compatible with the Uniforum message translations system as implemented for example in GNU gettext'
|
|
homepage 'https://metacpan.org/dist/libintl-perl'
|
|
version "1.35-#{CREW_PERL_VER}"
|
|
license 'GPL-1+ or Artistic'
|
|
compatibility 'all'
|
|
source_url "https://cpan.metacpan.org/authors/id/G/GU/GUIDO/libintl-perl-#{version.split('-').first}.tar.gz"
|
|
source_sha256 '64abed956aa07d1c8cc816c91cf78642c02faf03ab704ed38031baa07f06b16a'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'c104b2dd63e7662e4809e45d5c59ffd7f60582d5174bcff90960ca7acc44c272',
|
|
armv7l: 'c104b2dd63e7662e4809e45d5c59ffd7f60582d5174bcff90960ca7acc44c272',
|
|
i686: 'e0ef07730e168d7cb73f27419c7d15ec72d982724f9078093a430835d9824dcd',
|
|
x86_64: '5d07e7cffede716afd6a875ff7af62052bb1ca11aa4e69bcbf0bc12dd87d9ad3'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'perl' # R
|
|
|
|
conflicts_ok # conflicts with replaced perl_locale_messages.
|
|
end
|