mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt yaru to updater-yaru-25.10.2-0ubuntu1 * updater-yaru-25.10.2-0ubuntu1: Build Run on linux/amd64. * Adjust compatibility Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-yaru-25.10.2-0ubuntu1: Build Run on linux/arm/v7. * updater-yaru-25.10.2-0ubuntu1: Package File Update Run on linux/amd64 container. * updater-yaru-25.10.2-0ubuntu1: Package File Update Run on linux/arm/v7 container. --------- Signed-off-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> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
23 lines
674 B
Ruby
23 lines
674 B
Ruby
require 'buildsystems/meson'
|
|
|
|
class Yaru < Meson
|
|
description 'Yaru default ubuntu theme'
|
|
homepage 'https://github.com/ubuntu/yaru'
|
|
version '25.10.2-0ubuntu1'
|
|
license 'GPL-3 and CC-BY-SA-4.0'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://github.com/ubuntu/yaru.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'ff357cc93840fefb79be41c57a069a110d73e3258622a8b7bbc9c8ca390b5927',
|
|
armv7l: 'ff357cc93840fefb79be41c57a069a110d73e3258622a8b7bbc9c8ca390b5927',
|
|
x86_64: '01596e14bdc62bad815c2c1ab8afcaecf8612499a936d2260ea2e7d5c41dea24'
|
|
})
|
|
|
|
depends_on 'sassc'
|
|
|
|
meson_options ' -Dubuntu-unity=true'
|
|
end
|