mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* Add unbuilt jq to updater-jq-1.8.1 * Add oniguruma dep. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild oniguruma with GCC 15, update jq. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust Unit Test activation in workflows. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Revert Gen PR workflow setting PRs tp draft by default. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
27 lines
896 B
Ruby
27 lines
896 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Jq < Autotools
|
|
description 'jq is a lightweight and flexible command-line JSON processor.'
|
|
homepage 'https://stedolan.github.io/jq/'
|
|
version '1.8.1'
|
|
license 'MIT and CC-BY-3.0'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/stedolan/jq.git'
|
|
git_hashtag "jq-#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '9b43ad5b36f03354c8617508dba0b1cb0e22c917502a65e562ec57b08f63e5ea',
|
|
armv7l: '9b43ad5b36f03354c8617508dba0b1cb0e22c917502a65e562ec57b08f63e5ea',
|
|
i686: '3890e4b752480f64c8a424801ab6069b4c78db456bdeb1d42ea97bc930e260da',
|
|
x86_64: '1c10b89e6e12e52466f1b4dabe999ba9d705c54bddc2b3258e13898103f83826'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'oniguruma' # R
|
|
|
|
autotools_configure_options "--disable-maintainer-mode \
|
|
--disable-docs \
|
|
--enable-static#{'=no' if ARCH == 'i686'}"
|
|
end
|