mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Add unbuilt weston to updater-weston-14.0.2 * Add hwdata dep. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Disable backend-vnc Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-weston-14.0.2: Build Run on linux/arm/v7. * updater-weston-14.0.2: Build Run on linux/amd64. * updater-weston-14.0.2: Package File Update Run on linux/amd64 container. * Adjust for neatvnc update. * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Refactor weston to use new aml and neatvnc packages as deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix commit list in Generate PR workflow. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Remove solitary lint from commit list. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-weston-14.0.2: Package File Update Run on linux/amd64 container. * updater-weston-14.0.2: Package File Update Run on linux/arm/v7 container. * Catch files in dot subdirs under HOME when generating filelists. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Bump version further. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-weston-14.0.2: Build Run on linux/amd64. * updater-weston-14.0.2: Build Run on linux/arm/v7. * updater-weston-14.0.2: Package File Update Run on linux/amd64 container. --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
38 lines
1.1 KiB
Ruby
38 lines
1.1 KiB
Ruby
# Adapted from Arch Linux neatvnc PKGBUILD at:
|
|
# https://github.com/archlinux/svntogit-community/raw/packages/neatvnc/trunk/PKGBUILD
|
|
|
|
require 'buildsystems/meson'
|
|
|
|
class Neatvnc < Meson
|
|
description 'Fast and neat VNC server library'
|
|
homepage 'https://github.com/any1/neatvnc'
|
|
version '0.10-4962e0a'
|
|
license 'ISC'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://github.com/any1/neatvnc.git'
|
|
# git_hashtag "v#{version}"
|
|
git_hashtag '4962e0af5d550b2c4fd34c79dbdca543f233d87c'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'c4a0dbf10bb184aaa1af6227a7528dc960730a8780bd96734511abeb53d2be8d',
|
|
armv7l: 'c4a0dbf10bb184aaa1af6227a7528dc960730a8780bd96734511abeb53d2be8d',
|
|
x86_64: 'a4e61730f3859e6bfb5514385b81dd00750d7fc11b4ebe87fe36affd0792f07a'
|
|
})
|
|
|
|
depends_on 'aml' # R
|
|
depends_on 'ffmpeg' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'gmp' # R
|
|
depends_on 'gnutls' # R
|
|
depends_on 'libdrm' # R
|
|
depends_on 'libjpeg_turbo' # R
|
|
depends_on 'mesa' # R
|
|
depends_on 'nettle' # R
|
|
depends_on 'pixman' # R
|
|
depends_on 'zlib' # R
|
|
|
|
meson_options '-Djpeg=enabled \
|
|
-Dtls=enabled'
|
|
end
|