mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Rebuild libev, Update gnutls, add libngtp2, libnghttp3 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update gnutls package. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust gnutls build deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Gettext rebuild to fix autopoint usage. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add libev dep to gnutls. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update gnutls, working around broken docs. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * libngtcp2: Build Run on linux/arm/v7. * libngtcp2: Build Run on linux/386. * libngtcp2: Build Run on linux/amd64. * libngtcp2: Package File Update Run on linux/386 container. * sort packages.yml Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
44 lines
1.7 KiB
Ruby
44 lines
1.7 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://gnu.org/s/gettext/'
|
|
version '0.26-1'
|
|
license 'GPL-3+ and LGPL-2.1+'
|
|
compatibility 'all'
|
|
# source_url 'https://github.com/autotools-mirror/gettext.git'
|
|
# git_hashtag "v#{version.split('-')[0]}"
|
|
source_url "https://ftpmirror.gnu.org/gnu/gettext/gettext-#{version.split('-')[0]}.tar.lz"
|
|
source_sha256 'a0151088dad8942374dc038e461b228352581defd7055e79297f156268b8d508'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '544431c68111b92e5d0276d864ff4f744d6730e3129a3bdd98aba141b16ac9b7',
|
|
armv7l: '544431c68111b92e5d0276d864ff4f744d6730e3129a3bdd98aba141b16ac9b7',
|
|
i686: 'ddf90d4b54d84863b94b63e833d96ed0c9052a2d8a476d98ca46a9ff6f2bc6f8',
|
|
x86_64: '5c6e808ed06953e3e5ffc9defef6323253d4ada901e302900e79cdaed802f440'
|
|
})
|
|
|
|
depends_on 'acl' # R
|
|
depends_on 'attr' # R
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'gperf' => :build
|
|
depends_on 'libunistring' # R
|
|
depends_on 'libxml2' # R
|
|
depends_on 'ncurses' # R
|
|
depends_on 'openjdk8' => :build
|
|
depends_on 'wget2' => :build
|
|
|
|
autotools_configure_options '--disable-static \
|
|
--enable-shared \
|
|
--with-pic \
|
|
--with-xz \
|
|
--without-included-gettext'
|
|
|
|
autotools_install_extras do
|
|
# This fixes a missing archive message from autopoint.
|
|
downloader "https://alpha.gnu.org/gnu/gettext/archive.dir-#{version.split('-')[0]}.tar.xz", 'b93c05f162f10e23dea468445f8ac9326cf318cb99c22bae1646fffff7d4a97b', "#{CREW_DEST_PREFIX}/share/gettext/archive.dir.tar.xz"
|
|
end
|
|
end
|