mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -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>
22 lines
756 B
Ruby
22 lines
756 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Oniguruma < Autotools
|
|
description 'Oniguruma is a modern and flexible regular expressions library.'
|
|
homepage 'https://github.com/kkos/oniguruma'
|
|
version '6.9.10-1'
|
|
license 'BSD-2'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/kkos/oniguruma.git'
|
|
git_hashtag "v#{version.split('-').first}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '8852687c97e14224dcb9109d4a9a23e19cc6cd57c5a82c00e1b2765d8d81b4d5',
|
|
armv7l: '8852687c97e14224dcb9109d4a9a23e19cc6cd57c5a82c00e1b2765d8d81b4d5',
|
|
i686: '56cf9e186fb10f092884545430370de1bd355facd601723502a1b97a29b3d003',
|
|
x86_64: '59f7cf8d137cb10eb3dff51744cea72ee5575ea05c58f4c9d65fa073781ad95d'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
end
|