mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt libgpg_error to updater-libgpg_error-1.58 * updater-libgpg_error-1.58: Package File Update Run on linux/386 container. * updater-libgpg_error-1.58: Package File Update Run on linux/amd64 container. * updater-libgpg_error-1.58: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
28 lines
1.1 KiB
Ruby
28 lines
1.1 KiB
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Libgpg_error < Autotools
|
|
description 'Libgpg-error is a small library that defines common error values for all GnuPG components.'
|
|
homepage 'https://www.gnupg.org/related_software/libgpg-error/index.html'
|
|
version '1.58'
|
|
license 'GPL-2 and LGPL-2.1'
|
|
compatibility 'all'
|
|
# source_url "https://www.gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-#{version}.tar.bz2"
|
|
# source_sha256 '95b178148863f07d45df0cea67e880a79b9ef71f5d230baddc0071128516ef78'
|
|
source_url 'https://dev.gnupg.org/source/libgpg-error.git'
|
|
git_hashtag "libgpg-error-#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '805b6f751948d0f8471fc8dcab33797e8ff0ad036413a33f1e5d2813b2e9d7fe',
|
|
armv7l: '805b6f751948d0f8471fc8dcab33797e8ff0ad036413a33f1e5d2813b2e9d7fe',
|
|
i686: 'cebd41e587baa010d4c4ed4d04d7eceb7fa223eabfd6b265a9185ce711376676',
|
|
x86_64: 'a5dfd48d49047a1461156ebf8f589c661af00f1925a0515577ca16eb6a183049'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
|
|
# Docs fail to build otherwise.
|
|
autotools_configure_options '--enable-maintainer-mode'
|
|
end
|