mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Add unbuilt vala to updater-vala-0.56.18 * Refactor vala build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-vala-0.56.18: Build Run on linux/arm/v7. * updater-vala-0.56.18: Package File Update Run on linux/amd64 container. * updater-vala-0.56.18: Package File Update Run on linux/arm/v7 container. * Update git hash for vala_bootstrap. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- 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>
36 lines
1.1 KiB
Ruby
36 lines
1.1 KiB
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Vala < Autotools
|
|
description 'Vala is a programming language that aims to bring modern programming language features to GNOME developers.'
|
|
homepage 'https://wiki.gnome.org/Projects/Vala'
|
|
version '0.56.18'
|
|
license 'LGPL-2.1+'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://gitlab.gnome.org/GNOME/vala.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '6d503dc7421e47424458112704ce8e7597720fd5e9ca4fe7e017f27081e3c094',
|
|
armv7l: '6d503dc7421e47424458112704ce8e7597720fd5e9ca4fe7e017f27081e3c094',
|
|
x86_64: '98bf8c5cf34f6f564c90ed01b3a64218e48856aa6a853a3d9f161e1fd14ff3a9'
|
|
})
|
|
|
|
depends_on 'autoconf213' => :build
|
|
depends_on 'autoconf_archive' => :build
|
|
depends_on 'dbus' => :build
|
|
depends_on 'glib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'gobject_introspection' => :build
|
|
depends_on 'graphviz' => :build
|
|
depends_on 'libxslt' => :build
|
|
depends_on 'vala_bootstrap' => :build
|
|
|
|
conflicts_ok # Overwrites vala_bootstrap
|
|
git_fetchtags
|
|
gnome
|
|
|
|
autotools_configure_options '--disable-maintainer-mode \
|
|
--disable-valadoc'
|
|
end
|