mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Gettext 0.22.5-icu75.1 => 0.24-icu75.1 * Add built packages for linux/386 to update-gettext * Add built packages for linux/amd64 to update-gettext * Add built packages for linux/arm/v7 to update-gettext --------- Co-authored-by: Ed Reel <edreel@gmail.com> Co-authored-by: uberhacker <uberhacker@users.noreply.github.com>
39 lines
1.3 KiB
Ruby
39 lines
1.3 KiB
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Gettext < Autotools
|
|
description 'GNU gettext utilities are a set of tools that provides a framework to help other GNU packages produce multi-lingual messages.'
|
|
homepage 'https://www.gnu.org/software/gettext/'
|
|
version "0.24-#{CREW_ICU_VER}"
|
|
license 'GPL-3+ and LGPL-2.1+'
|
|
compatibility 'all'
|
|
source_url "https://ftpmirror.gnu.org/gettext/gettext-#{version.split('-')[0]}.tar.lz"
|
|
source_sha256 'caa44aed29c9b4900f1a401d68f6599a328a3744569484dc95f62081e80ad6cb'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '2f86e40b77f046b86822f6d7bbcca8d5073657a20b10997ae874601dc5c0bb24',
|
|
armv7l: '2f86e40b77f046b86822f6d7bbcca8d5073657a20b10997ae874601dc5c0bb24',
|
|
i686: '606b3b9a62738e950dec90a644c8a5ba062c6cbf8f5d2869f79a12db165b83ea',
|
|
x86_64: 'ef3bcbd7d97d02b964860b28bb008bf41900a5013c19a77c7f35caf8bc06189f'
|
|
})
|
|
|
|
depends_on 'acl' # R
|
|
depends_on 'attr' # R
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'icu4c' # R
|
|
depends_on 'libunistring' # R
|
|
depends_on 'libxml2' # R
|
|
depends_on 'ncurses' # R
|
|
depends_on 'openjdk8' => :build
|
|
depends_on 'zlib' # R
|
|
|
|
configure_options '--disable-static \
|
|
--enable-shared \
|
|
--with-pic \
|
|
--without-included-gettext'
|
|
|
|
# cldr-plurals-1 test fails with icu75.1
|
|
# run_tests
|
|
end
|