mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt gnome_calculator to updater-gnome_calculator-48.1 * add vala dep Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * gnome_calculator => 49 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>
49 lines
1.3 KiB
Ruby
49 lines
1.3 KiB
Ruby
require 'buildsystems/meson'
|
|
|
|
class Gnome_calculator < Meson
|
|
description 'GNOME desktop calculator'
|
|
homepage 'https://wiki.gnome.org/Apps/Calculator'
|
|
version '49.0'
|
|
license 'LGPL-2.1+'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://gitlab.gnome.org/GNOME/gnome-calculator.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'f21f6bd43d5dcdeb421798ded1ef6f74faa92ddc063104a08f7190290b74be8e',
|
|
armv7l: 'f21f6bd43d5dcdeb421798ded1ef6f74faa92ddc063104a08f7190290b74be8e',
|
|
x86_64: '1f98a5951e5288017282e800e8bae635b4c680dead6365d9d3564567972ce470'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'gtk4' # R
|
|
depends_on 'gtksourceview_5' # R
|
|
depends_on 'libadwaita' # R
|
|
depends_on 'libgee' # R
|
|
depends_on 'libhandy' => :build
|
|
depends_on 'libsoup' # R
|
|
depends_on 'libxml2' # R
|
|
depends_on 'mpc' # R
|
|
depends_on 'mpfr' # R
|
|
depends_on 'py3_itstool' => :build
|
|
depends_on 'py3_libxml2' => :build
|
|
depends_on 'py3_pygobject' => :build
|
|
depends_on 'python3' => :build
|
|
depends_on 'vala' => :build
|
|
depends_on 'wayland' => :build
|
|
|
|
gnome
|
|
|
|
def self.postinstall
|
|
puts <<~EOT.lightblue
|
|
|
|
To use the graphical calculator, execute 'gnome-calculator'
|
|
|
|
To use the command line calculator, execute 'gcalccmd'
|
|
EOT
|
|
end
|
|
end
|