mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* modernize package Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-fribidi-1.0.16: Package File Update Run on linux/386 container. * updater-fribidi-1.0.16: Package File Update Run on linux/amd64 container. * updater-fribidi-1.0.16: Package File Update Run on linux/arm/v7 container. --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
25 lines
803 B
Ruby
25 lines
803 B
Ruby
require 'buildsystems/meson'
|
|
|
|
class Fribidi < Meson
|
|
description 'GNU FriBidi is an implementation of the Unicode Bidirectional Algorithm (bidi).'
|
|
homepage 'https://github.com/fribidi/fribidi'
|
|
version '1.0.16'
|
|
license 'LGPL-2.1+'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/fribidi/fribidi.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'b74c5a5608e0640fbf5a9873a7ea0b53a3351c74ef0e38136e6fe2cca020517a',
|
|
armv7l: 'b74c5a5608e0640fbf5a9873a7ea0b53a3351c74ef0e38136e6fe2cca020517a',
|
|
i686: 'd26ffc24ca2ffddaf31c5e95c1904fa642d139a7cbe52900f6ab78b544e1307c',
|
|
x86_64: '3314bbd8192a99e3e56915df475cde4c497d04b10152a7c9984edcebe844af1f'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
|
|
meson_options '-Ddocs=false \
|
|
-Dtests=false'
|
|
end
|